/* ============================================================
   LYLA JEWELRY - PRESS CATALOG PAGE
   ============================================================ */

/* ==================== MEDIA QUERY BREAKPOINTS ====================
   Large Desktop: 1440px+
   Desktop:       1025px - 1439px (default base styles)
   Tablet:        768px - 1024px
   Large Mobile:  481px - 767px  
   Mobile:        max-width: 480px
   ============================================================ */

/* ==================== BASE STYLES (Desktop 1025px-1439px) ==================== */

/* Page Header */
.press-header {
    width: 100%;
    background-color: #fff;
    padding: 100px 5% 60px 5%;
    text-align: center;
}

.press-header-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 400;
}

.press-header-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #000;
}

.press-header-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    opacity: 0.8;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured (first) Article */
.press-featured {
    background-color: #fff;
    padding: 40px 5% 80px 5%;
}

.press-featured-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.press-featured-image {
    flex: 1.2;
    overflow: hidden;
}

.press-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.press-featured-image:hover img {
    transform: scale(1.03);
}

.press-featured-content {
    flex: 1;
}

.press-featured-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
    font-weight: 400;
}

.press-featured-title {
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.3;
}

.press-featured-excerpt {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
    opacity: 0.75;
    margin-bottom: 30px;
    font-weight: 300;
}

.press-featured-meta {
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 300;
}

.press-featured-meta span {
    margin: 0 8px;
}

.press-featured-link {
    display: inline-block;
    padding: 14px 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.press-featured-link:hover {
    background-color: #333;
}

/* Articles Grid */
.press-grid-section {
    padding: 60px 5% 100px 5%;
    background-color: #fff;
}

.press-grid-title {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 60px;
    font-weight: 400;
}

.press-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

.press-card {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.press-card:hover {
    transform: translateY(-4px);
}

.press-card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #eee;
}

.press-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.press-card:hover .press-card-image img {
    transform: scale(1.05);
}

.press-card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 400;
}

.press-card-title {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.3;
}

.press-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #000;
    opacity: 0.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.press-card-meta {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 1px;
    font-weight: 300;
    margin-top: auto;
}

.press-card-meta span {
    margin: 0 6px;
}

/* ==================== LARGE DESKTOP: 1440px+ ==================== */
@media (min-width: 1440px) {
    .press-header-title {
        font-size: 40px;
    }

    .press-header-text {
        font-size: 1.2rem;
    }

    .press-featured-title {
        font-size: 35px;
    }
}

/* ==================== TABLET: 768px - 1024px ==================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .press-header {
        padding: 80px 4% 50px 4%;
    }

    .press-header-title {
        font-size: 35px;
    }

    .press-header-text {
        font-size: 1rem;
    }

    .press-featured {
        padding: 30px 4% 60px 4%;
    }

    .press-featured-container {
        gap: 40px;
    }

    .press-featured-title {
        font-size: 2.2rem;
    }

    .press-grid-section {
        padding: 50px 4% 80px 4%;
    }

    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

/* ==================== LARGE MOBILE: 481px - 767px ==================== */
@media (min-width: 481px) and (max-width: 767px) {
    .press-header {
        padding: 60px 5% 40px 5%;
    }

    .press-header-title {
        font-size: 2.2rem;
    }

    .press-header-text {
        font-size: 0.95rem;
    }

    .press-featured {
        padding: 20px 5% 50px 5%;
    }

    .press-featured-container {
        flex-direction: column;
        gap: 30px;
    }

    .press-featured-title {
        font-size: 2rem;
    }

    .press-featured-excerpt {
        font-size: 0.95rem;
    }

    .press-grid-section {
        padding: 40px 5% 60px 5%;
    }

    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }

    .press-card-title {
        font-size: 1.2rem;
    }

    .press-card-excerpt {
        font-size: 0.9rem;
    }
}

/* ==================== MOBILE: ≤480px ==================== */
@media (max-width: 480px) {
    .press-header {
        padding: 50px 15px 0px 15px;
    }

    .press-header-subtitle {
        font-size: 0.8rem;
    }

    .press-header-title {
        font-size: 30px;
        margin-bottom: 00px;
        margin-top: 30px;
        padding-bottom: 0px;
        margin-right: auto;
        text-align: left;
    }

    .press-header-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .press-featured {
        padding: 15px 15px 40px 15px;
    }

    .press-featured-container {
        flex-direction: column;
        gap: 25px;
    }

    .press-featured-tag {
        font-size: 0.75rem;
    }

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

    .press-featured-excerpt {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .press-featured-meta {
        font-size: 0.8rem;
        margin-bottom: 25px;
    }

    .press-featured-link {
        padding: 12px 35px;
        font-size: 0.8rem;
    }

    .press-grid-section {
        padding: 35px 15px 50px 15px;
    }

    .press-grid-title {
        font-size: 0.8rem;
        margin-bottom: 40px;
    }

    .press-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .press-card-image {
        margin-bottom: 20px;
    }

    .press-card-title {
        font-size: 1.3rem;
    }

    .press-card-excerpt {
        font-size: 0.9rem;
    }
}
