/* ============================================
   Browse Page — Homepage Styles
   ============================================ */

/* ---------- Newsletter Banner ---------- */
.newsletter-banner {
    background: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.newsletter-banner__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
}

.newsletter-banner__inner a {
    color: #0000ee;
    font-weight: 600;
}

/* ---------- Hero Section ---------- */
.hero {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.hero__link {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: #fff;
    max-width: 1320px;
    margin: 0 auto;
    min-height: 420px;
    transition: opacity 0.3s;
}

.hero__link:hover {
    text-decoration: none;
    opacity: 0.95;
}

.hero__image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero__content {
    width: 420px;
    flex-shrink: 0;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
}

.hero__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #cccccc;
}

/* ---------- Featured Section ---------- */
.featured-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.featured-section__header {
    margin-bottom: 30px;
    position: relative;
}

.featured-section__title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    padding-left: 16px;
    border-left: 4px solid #a31f34;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    left: -10px;
    top: 0;
    height: 160px;
    display: flex;
    align-items: center;
}

/* ---------- Featured Grid ---------- */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    padding-left: 40px;
}

/* ---------- Featured Card ---------- */
.featured-card {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 24px;
}

.featured-card__link {
    display: flex;
    gap: 18px;
    text-decoration: none;
    color: #050505;
    transition: opacity 0.2s;
}

.featured-card__link:hover {
    text-decoration: none;
    opacity: 0.8;
}

.featured-card__image {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}

.featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-card__link:hover .featured-card__image img {
    transform: scale(1.05);
}

.featured-card__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-card__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #000;
}

.featured-card__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero__link {
        flex-direction: column;
        min-height: auto;
    }

    .hero__image {
        min-height: 260px;
    }

    .hero__content {
        width: 100%;
        padding: 30px 20px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .featured-section__title {
        writing-mode: horizontal-tb;
        position: static;
        border-left: 4px solid #a31f34;
        padding-left: 12px;
        height: auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .hero__title {
        font-size: 24px;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .featured-card__link {
        flex-direction: column;
    }

    .featured-card__image {
        width: 100%;
        height: 180px;
    }
}