/* --- BLOG PAGE LUXURY STYLING --- */

/* 1. Article Card Refinement */
.blog-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
    background: #ffffff;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* 2. Editorial Image Zoom */
.blog-img-wrapper {
    overflow: hidden;
    position: relative;
    height: 250px;
}

.blog-img-wrapper img {
    transition: transform 0.6s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* 3. Glass-morphism Date Badge */
.blog-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* 4. Typography Hierarchy */
.blog-title {
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
    color: #1a1d20;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #D4AF37; /* K2 Signature Gold */
}

/* 5. Custom Button (The Editorial Link) */
.blog-btn {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #D4AF37;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.blog-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

.blog-card:hover .blog-btn::after {
    width: 100%;
}

/* 6. Detail Page Typography */
.blog-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.blog-content blockquote {
    border-left: 4px solid #D4AF37;
    padding-left: 25px;
    font-style: italic;
    color: #1a1d20;
    margin: 40px 0;
}
/* --- 7. EDITORIAL HEADER STYLING --- */
.blog-header-banner {
    background-color: #36454F; /* K2 Charcoal or #6f42c1 for Purple */
    padding: 60px 0;
    text-align: center;
}

.blog-header-banner h1 {
    font-size: 2.2rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.3;
}

.blog-meta-top {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured-editorial-frame {
    margin-top: -30px; /* Overlap effect for a modern look */
    position: relative;
    z-index: 5;
}

.featured-editorial-frame img {
    border-radius: 0; /* Full width like your reference */
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.share-container {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.share-container p {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #374151;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.8;
}

.whatsapp { background-color: #25D366; }
.facebook { background-color: #1877F2; }
.linkedin { background-color: #0077B5; }
