.case-studies-section {
    padding: 74px 10px;
    background-color: #fff;
}

.cs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.cs-header-left {
    flex: 1;
}

.cs-header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cs-sub-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.cs-sub-heading .dot {
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    border-radius: 50%;
}

.cs-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.cs-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-cta-blue {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-cta-blue:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Items Grid */
.cs-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cs-item {
    display: flex;
    flex-direction: column;
}

.cs-item-image {
    width: 100%;
    aspect-ratio: 16/16;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 25px;
}

.cs-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-item-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cs-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-badge-category {
    background-color: #fff;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.cs-badge-year {
    background-color: #fff;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.cs-item-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cs-item-summary {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .cs-header {
        flex-direction: column;
        gap: 20px;
    }
    .cs-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .cs-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .cs-items {
        grid-template-columns: 1fr;
    }
}
