/* ========================================
   LAKUM ARTSPACE - PRESS PAGE STYLES
   ======================================== */

.lakum-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* ===== HERO SECTION ===== */

.lakum-press-hero {
    padding: clamp(60px, 8vw, 90px) 0 clamp(60px, 8vw, 100px) 0;
    background: #f6f6eb;
    text-align: center;
}

.lakum-press-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin: 0 0 clamp(16px, 2vw, 24px) 0;
    line-height: 1.2;
    text-align: center !important;
    /* Force center alignment */
}

.lakum-press-hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    color: #525252;
    margin: 0 auto;
    line-height: 1.6;
    max-width: 800px;
    text-align: center !important;
    /* Force center alignment */
}

/* ===== PRESS CONTENT ===== */

.lakum-press-content {
    padding: clamp(60px, 8vw, 100px) 0;
    background: #ffffff;
}

.lakum-press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 40px);
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== PRESS CARD ===== */

.lakum-press-card {
    background: #f6f6eb;
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lakum-press-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.lakum-press-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.lakum-press-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.lakum-press-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edecdf;
}

.lakum-press-card__placeholder i {
    font-size: 48px;
    color: #d1d1d1;
}

.lakum-press-card__content {
    padding: clamp(20px, 3vw, 28px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lakum-press-card__source {
    font-size: 0.8rem;
    font-weight: 500;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.lakum-press-card__title {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.lakum-press-card__description {
    font-size: 0.9rem;
    font-weight: 300;
    color: #525252;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
}

.lakum-press-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(209, 209, 209, 0.3);
    margin-top: auto;
}

.lakum-press-card__date {
    font-size: 0.85rem;
    color: #8a8a8a;
    font-weight: 300;
}

.lakum-press-card__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.lakum-press-card:hover .lakum-press-card__link {
    color: #525252;
}

/* ===== EMPTY STATE ===== */

.lakum-press-empty {
    text-align: center;
    padding: clamp(80px, 10vw, 120px) 20px;
    color: #8a8a8a;
}

.lakum-press-empty i {
    font-size: 64px;
    display: block;
    margin-bottom: 24px;
    color: #d1d1d1;
}

.lakum-press-empty h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #525252;
    margin: 0 0 12px 0;
}

.lakum-press-empty p {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .lakum-press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lakum-press-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}