/* Case Study Page Styles */

/* Hero Section */
.case-study-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 80px 0 60px 0;
}

.case-study-hero .container {
    text-align: center;
    max-width: 900px;
}

.case-study-hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-hero .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Channel Logo */
.channel-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.channel-logo img {
    width: 100%;
    height: 100%;
    border-radius: 60px;
    object-fit: cover;
}

/* Channel Info */
.channel-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 24px 32px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.channel-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Content Section */
.case-study-content {
    background-color: white;
    padding: 60px 0;
}

.case-study-content .container {
    max-width: 900px;
}

.case-study-section {
    margin-bottom: 48px;
}

.case-study-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #c41e3a;
}

.case-study-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.result-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.result-card:hover {
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.1);
    border-color: #c41e3a;
    transform: translateY(-4px);
}

.result-card .metric {
    font-size: 36px;
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 8px;
    line-height: 1;
}

.result-card .label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(196, 30, 58, 0.02) 100%);
    border-left: 4px solid #c41e3a;
    padding: 24px 28px;
    border-radius: 8px;
    margin: 32px 0;
}

.highlight-box p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-style: italic;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Responsive Styles */

@media (max-width: 768px) {
    .case-study-hero {
        padding: 40px 0 30px 0;
    }

    .case-study-hero h1 {
        font-size: 28px;
    }

    .case-study-hero .subtitle {
        font-size: 16px;
    }

    .channel-logo {
        width: 100px;
        height: 100px;
    }

    .case-study-content {
        padding: 40px 0;
    }

    .case-study-section h2 {
        font-size: 24px;
    }

    .case-study-section h3 {
        font-size: 18px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 24px;
    }
}
