.blog-container {
    padding-top: 180px;
    padding-bottom: 0;
}

.smooth-gold-text {
    background: linear-gradient(110deg, #997B2F 0%, #e7d4aa 40%, #FFFFFF 50%, #e7d4aa 60%, #997B2F 100%);
    background-size: 200% 100%;
    background-position: var(--light-pos) 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff;
    color: #fff;
    transition: -webkit-text-fill-color 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

.featured-wrapper:hover .smooth-gold-text,
.magazine-row:hover .smooth-gold-text {
    -webkit-text-fill-color: transparent;
}

.page-header {
    text-align: center;
    margin-bottom: 140px;
}

@media (max-width: 900px) {
    .page-header {
        margin-bottom: 80px;
    }
}

.header-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
}

.header-sub {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
}

.magazine-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 160px;
    align-items: center;
    margin-bottom: 140px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    color: inherit;
}

    .magazine-row.active {
        opacity: 1;
        transform: translateY(0);
    }

    .magazine-row:nth-child(even) .mag-img-col {
        order: 2;
    }

    .magazine-row:nth-child(even) .mag-txt-col {
        order: 1;
    }

.mag-img-container {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    position: relative;
    display: block;
}

.mag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-luxury), filter 0.8s ease;
    filter: grayscale(30%) brightness(0.9);
}

.magazine-row:hover .mag-img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.mag-txt-col {
    padding: 0 10px;
}

.mag-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    display: block;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mag-excerpt {
    font-size: 1rem;
    color: #999;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-btn {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

    .read-btn::after {
        content: '';
        display: block;
        width: 30px;
        height: 1px;
        background-color: #333;
        transition: width 0.4s var(--ease-luxury), background 0.4s;
    }

.featured-wrapper:hover .read-btn::after,
.magazine-row:hover .read-btn::after {
    width: 60px;
    background: linear-gradient(110deg, #997B2F 0%, #e7d4aa 40%, #FFFFFF 50%, #e7d4aa 60%, #997B2F 100%);
    background-size: 200% 100%;
    background-position: var(--light-pos) 0;
}

@media (max-width: 900px) {
    .blog-container {
        padding-top: 140px;
        padding-bottom: 0;
    }

    .read-btn::after {
        display: none;
    }

    .featured-wrapper {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 30px;
        margin-bottom: 80px;
        text-align: center;
    }

    .feat-img-container {
        height: 300px;
        order: 0;
    }

    .feat-content {
        order: 1;
        padding-right: 0;
        padding: 0 10px;
    }

    .feat-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .feat-excerpt {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .feat-content .read-btn {
        margin: 0 auto;
        justify-content: center;
    }

    .magazine-row {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 80px;
        text-align: center;
    }

        .magazine-row:nth-child(even) .mag-img-col {
            order: 0;
        }

        .magazine-row:nth-child(even) .mag-txt-col {
            order: 1;
        }

    .mag-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .mag-excerpt {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .mag-txt-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .read-btn {
        margin-top: 10px;
        justify-content: center;
    }
}
