/* ===== BREADCRUMB ===== */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding: 80px 0 60px;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(/crystalshablon/images/resources/bg-page2.png);
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-size: clamp(22px, 4vw, 38px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0 0 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.hero-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.hero-breadcrumb li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.hero-breadcrumb li a:hover { color: #fff; }
.hero-breadcrumb li.active { color: rgba(255,255,255,0.5); }
.hero-breadcrumb li:not(:last-child)::after {
    content: '›';
    font-size: 16px;
    color: rgba(255,255,255,0.35);
}

/* ===== CONTENT AREA ===== */
.content-section {
    padding: 70px 0 90px;
    background: #fff;
}
.content-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.07), 0 1px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}
.content-card-header {
    background: linear-gradient(135deg, #1a3a5c 0%, #1e5276 100%);
    padding: 36px 44px 32px;
    position: relative;
    overflow: hidden;
}
.content-card-header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.content-card-header::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.card-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.card-title {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}
.content-card-body {
    padding: 44px;
}
.content-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30,82,118,0.15), transparent);
    margin: 0 44px;
}
.article-content {
    font-size: 16px;
    line-height: 1.85;
    color: #374151;
}
.article-content p {
    margin: 0 0 20px;
}
.article-content p:last-child { margin-bottom: 0; }
.article-content h2, .article-content h3 {
    color: #1a3a5c;
    font-weight: 700;
    margin: 28px 0 12px;
}
.article-content img {
    border-radius: 12px;
    max-width: 100%;
    margin: 20px 0;
}
.article-content a {
    color: #1e5276;
    text-decoration: underline;
    text-decoration-color: rgba(30,82,118,0.35);
    transition: text-decoration-color 0.2s;
}
.article-content a:hover {
    text-decoration-color: #1e5276;
}

/* Bottom meta bar */
.content-card-footer {
    padding: 20px 44px;
    background: #f8fafc;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.meta-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1e5276;
    text-decoration: none;
    padding: 8px 18px;
    border: 1.5px solid rgba(30,82,118,0.25);
    border-radius: 30px;
    transition: all 0.2s;
}
.meta-back-link:hover {
    background: #1e5276;
    color: #fff;
    border-color: #1e5276;
}
.meta-back-link svg {
    width: 14px;
    height: 14px;
}
.meta-info {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 16px;
}
.meta-info span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .content-card-header { padding: 28px 24px 24px; }
    .content-card-body { padding: 28px 24px; }
    .content-card-footer { padding: 16px 24px; }
    .content-divider { margin: 0 24px; }
}