/* Premium Hero Header */
.premium-hero-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 120px;
    color: white;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--c-primary);
}

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.detail-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    font-weight: 800;
    line-height: 1.2;
}

.detail-summary {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.glass-btn {
    background: var(--c-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(192,10,39,0.3);
    border: 2px solid var(--c-primary);
    transition: all 0.3s ease;
}
.glass-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(192,10,39,0.5);
}

.glass-btn-outline {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.glass-btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}


/* Premium Layout Grid */
.premium-layout {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.premium-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.premium-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Glass Card */
.glass-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-header h2 {
    font-size: 2rem;
    color: var(--c-text);
    margin: 0;
}
.card-header h3 {
    font-size: 1.5rem;
    color: var(--c-text);
    margin: 0;
}

.rich-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--c-text);
    margin-bottom: 24px;
    text-align: justify;
    word-spacing: normal;
    letter-spacing: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

        @media (max-width: 900px) {
            .premium-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .premium-hero-header {
                padding: 120px 0 60px;
            }
            .detail-title {
                font-size: 2.2rem;
                text-align: left;
            }
            .detail-summary {
                text-align: justify;
                font-size: 1rem;
            }
            .breadcrumb {
                text-align: left;
            }
            .hero-actions {
                justify-content: flex-start;
            }
            .glass-card { padding: 24px; }
            .card-header h2 { font-size: 1.6rem; }
        }

        @media (max-width: 500px) {
            .hero-actions { flex-direction: column; }
            .glass-btn, .glass-btn-outline { width: 100%; display: block; text-align: center; }
        }
