ul.custom-xmasbullet {
    font-family: "Inter", sans-serif;
    font-size: 1.1em;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

ul.custom-xmasbullet li {
    margin: 0;
    margin-bottom: 0.5em;
    padding-left: 1.8em;
    position: relative;
    line-height: 1.5;
}

ul.custom-xmasbullet li::after {
    content: '🎄';
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 0.9em;
    line-height: 1;
}

.winter-lookbook-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
}

.lookbook-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lookbook-hero {
    min-height: 450px;
}

.lookbook-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Date badge card ── */
.lookbook-date-card {
    background-color: #306f88;
    color: #ffffff;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lookbook-date-card .subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    margin-bottom: 5px;
}

.lookbook-date-card .divider {
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}

.lookbook-date-card .date {
    font-size: clamp(1rem, 2.5vw, 1.3rem); /* FIX: fluid type */
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
    .lookbook-hero {
        min-height: 320px;
    }
}

/* ── Mobile / small tablet (≤768px) ── */
@media (max-width: 768px) {
    .winter-lookbook-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 25px auto;
    }

    .lookbook-hero {
        min-height: 250px;
        height: 250px;
    }

    .lookbook-stack {
        gap: 15px;
    }

    .lookbook-item {
        height: 200px;
    }

    .lookbook-date-card {
        height: auto;
        padding: 25px 20px;
        order: -1; 
    }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
    .winter-lookbook-container {
        margin: 15px auto;
        padding: 0 10px;
    }

    .lookbook-hero {
        min-height: 200px;
        height: 200px;
    }

    .lookbook-item {
        height: 170px;
    }
}

/* ── Landscape phone ── */
@media (max-height: 430px) and (orientation: landscape) {
    .winter-lookbook-container {
        grid-template-columns: 2fr 1fr;
        margin: 15px auto;
    }

    .lookbook-hero {
        min-height: 200px;
    }

    .lookbook-item {
        height: 150px;
    }

    .lookbook-date-card {
        order: 0;
        padding: 12px;
    }

    .lookbook-date-card .subtitle {
        font-size: 0.75rem;
    }

    .lookbook-date-card .date {
        font-size: 0.95rem;
    }
}