.csc-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.csc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(20, 40, 70, 0.55);
    transition: background-color 0.35s ease;
    z-index: 1;
}

.csc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.csc-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    width: 100%;
    color: #fff;
}

.csc-title {
    margin: 0 0 14px;
    font-size: 1.6rem;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
}

.csc-title-line {
    display: block;
}

.csc-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
    padding-bottom: 2px;
    transition: gap 0.25s ease;
}

.csc-card:hover .csc-cta {
    gap: 10px;
}

.csc-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.csc-card:hover .csc-arrow {
    transform: translateX(3px);
}
