/* ===== Blog Intro ===== */
.blog-intro-section {
    padding: 56px 0 8px;
    background: #0a0a0a;
}

.blog-intro {
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

.blog-intro p {
    margin-bottom: 1.2em;
}

.blog-intro strong {
    color: #C9A84C;
    font-weight: 600;
}

.blog-intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    margin: 1.6em 0 0.8em;
    letter-spacing: 0.02em;
}

.blog-intro-list {
    padding-left: 1.4em;
    margin: 0 0 0.5em;
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.blog-intro-list li {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ===== Blog Hero ===== */
.blog-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: #000 url('../images/hero-blue.webp') no-repeat center center / cover;
    background-attachment: scroll;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.blog-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
}

.blog-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ===== Blog Section ===== */
.blog-section {
    background: #0d0d0d;
    padding: 80px 0 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ===== Blog Card ===== */
.blog-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.3);
}

.blog-card-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.04);
}

.blog-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #C9A84C;
    color: #000;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: #C9A84C;
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-btn {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A84C;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.blog-card-btn:hover {
    color: #e0c070;
    border-color: #C9A84C;
}

/* ===== Artikel Page ===== */
.artikel-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    background: #000 url('../images/collection-signature.jpg') no-repeat center center / cover;
    background-attachment: scroll;
}

.artikel-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
}

.artikel-hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 0 60px;
    max-width: 800px;
}

.artikel-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 16px;
}

.artikel-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.artikel-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* ===== Artikel Content ===== */
.artikel-body {
    background: #0d0d0d;
    padding: 80px 0;
}

.artikel-content {
    max-width: 800px;
    margin: 0 auto;
}

.artikel-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.artikel-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin: 48px 0 16px;
}

.artikel-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: #C9A84C;
    margin: 32px 0 12px;
}

/* ===== Share Bar ===== */
.artikel-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 48px 0 0;
}

.artikel-share-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    background: none;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.share-btn:hover {
    border-color: #C9A84C;
    color: #C9A84C;
}

.share-btn.wa {
    border-color: rgba(37, 211, 102, 0.4);
    color: #25D366;
}

.share-btn.wa:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
}

/* ===== Back + Related ===== */
.artikel-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A84C;
    text-decoration: none;
    margin-bottom: 64px;
    transition: opacity 0.2s;
}

.artikel-back:hover {
    opacity: 0.7;
}

.related-section {
    background: #111;
    padding: 80px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .artikel-share {
        flex-wrap: wrap;
    }
}
