/* Case Studies Page Specific Styles */

/* Case Study Items */
.case-study-content {
    text-align: center;
    background-color: rgb(249, 244, 244);
    padding: 3rem;
}

.case-study-content img {
    max-width: 100%;
    margin: 0 auto;
}
.case-study-details {
    margin: 1.5rem 0;
}

.case-study-details p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.case-study-link {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.btn-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.btn-link:hover {
    background: #0a3d91;
    color: white;
}

.case-study-stats {
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: space-around;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Case Study Authors and Academic Formatting */
.case-study-authors {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0 5px 5px 0;
}

.case-study-authors p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.case-study-summary {
    margin-bottom: 1.5rem;
}

.case-study-summary h4,
.case-study-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.case-study-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}



/* Case Studies Page Responsive Design */
@media (max-width: 768px) {
    .case-study-item {
        grid-template-columns: 1fr;
    }
    
    .case-study-stats {
        justify-content: center;
    }
}

@media (max-width: 450px) {
    .case-study-item {
        width: 100%;
    }
}
