/* Case-study section reused across the feature/module pages (_CaseStudyStrip.cshtml). */

.cs-strip {
    background: var(--paper-warm, #faf7f2);
}

.cs-strip-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 26px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cs-strip-card:hover,
.cs-strip-card:focus-visible {
    transform: translateY(-4px);
    border-color: var(--brand-orange, #eb5017);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    color: inherit;
}

.cs-strip-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.cs-strip-top img {
    max-height: 34px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
}

.cs-strip-industry {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8a8078;
    white-space: nowrap;
}

.cs-strip-card h6 {
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.cs-strip-card p {
    font-size: 0.95rem;
    color: #5f5952;
    margin-bottom: 18px;
}

.cs-strip-foot {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--brand-orange, #eb5017);
}

.cs-strip-card:hover .cs-strip-foot i {
    transform: translateX(4px);
}

.cs-strip-foot i {
    transition: transform 0.25s ease;
}

.cs-strip-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    color: var(--brand-orange, #eb5017);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

.cs-strip-all:hover {
    color: #c2410c;
}

@media (max-width: 575.98px) {
    .cs-strip-card {
        padding: 22px 20px;
    }
}
