/* ============================================================
   HERO METABOX - TWO COLUMN LAYOUT
   ============================================================ */

.post-hero-metabox {
    padding: 3rem 0;
    background: linear-gradient(145deg, #0b0a0a 0%, #1a1717 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.post-hero-metabox .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 400px;
}

.hero-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.hero-content .hero-title {
   font-size: clamp(1rem, 2.8vw, 2.1rem);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #f7e8b0 0%, #d4af37 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.15);
}

.hero-content .hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: #e0d6c8;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.hero-content .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-content .btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #1a1717;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.hero-content .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
}

.hero-content .btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.hero-content .btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Hero Image */
.hero-image {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image .hero-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image .hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* Decorative glow effect */
.post-hero-metabox::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        gap: 2rem;
        min-height: 300px;
    }
    .hero-content .hero-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
}

@media (max-width: 768px) {
    .post-hero-metabox {
        padding: 2rem 0;
    }
    .hero-grid {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }
    .hero-content {
        order: 2;
        text-align: center;
    }
    .hero-image {
        order: 1;
        width: 100%;
    }
    .hero-image .hero-img {
        max-height: 250px;
        border-radius: 16px;
    }
    .hero-content .hero-buttons {
        justify-content: center;
    }
    .hero-content .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content .hero-title {
        font-size: 1.8rem;
    }
    .hero-content .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-image .hero-img {
        max-height: 200px;
    }
}