.mamas-mat-press-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 600;
}

.press-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.press-article {
    background: #fff;
    border: 1px solid #fbf1f1;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.press-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.press-logo {
    margin-bottom: 15px;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-logo img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.press-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}
.press-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #96492b;
    text-align: center;
    margin: 0 0 20px 0;
}
.press-meta {
    margin-bottom: 18px;
}
.press-date {
    color: #bdbdbd;
    font-size: 1em;
    text-align: center;
    display: block;
}

.press-title a {
    color: #8F3F2B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-title a:hover {
    color: #666;
}

.press-publication {
    font-weight: 600;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .press-articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .press-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
}

.mamas-mat-press-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.mamas-mat-press-slider {
    margin: 0 -15px;
}

.mamas-mat-press-slide {
    padding: 0 15px;
}

.mamas-mat-press-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #f2f2f2;
    padding: 32px 24px 24px 24px;
    transition: box-shadow 0.2s;
}
.mamas-mat-press-item:hover {
    /* box-shadow: 0 4px 24px rgba(0,0,0,0.13); */
}

.press-image {
    width: 120px;
    height: 70px;
    margin: 40px auto 68px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.press-image img {
    min-width: 140px;
    object-fit: contain;
    display: block;
}

.mamas-mat-press-discover {
    display: inline-block;
    margin: 0 auto;
    padding: 10px 36px;
    border: 1.5px solid #96492b;
    border-radius: 24px;
    background: #fff;
    color: #96492b;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}
.mamas-mat-press-discover:hover {
    background: #96492b;
    color: #fff;
}
.mamas-mat-press-discover {
    font-weight: normal !important;
}

.mamas-mat-press-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #96492b;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
}
.mamas-mat-press-nav:hover {
    background: #7a3a1e;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.mamas-mat-press-prev {
    left: -28px;
}
.mamas-mat-press-next {
    right: -28px;
}
.mamas-mat-press-nav i {
    color: #fff;
    font-size: 2em;
}

@media screen and (max-width: 1024px) {
    .mamas-mat-press-wrapper {
        padding: 15px;
    }
    .mamas-mat-press-nav {
        width: 44px;
        height: 44px;
    }
    .mamas-mat-press-prev {
        left: -18px;
    }
    .mamas-mat-press-next {
        right: -18px;
    }
    .mamas-mat-press-item {
        padding: 24px 12px 18px 12px;
    }
}
@media screen and (max-width: 600px) {
    .mamas-mat-press-wrapper {
        padding: 8px;
    }
    .mamas-mat-press-nav {
        width: 36px;
        height: 36px;
    }
    .mamas-mat-press-prev {
        left: -8px;
    }
    .mamas-mat-press-next {
        right: -8px;
    }
    .mamas-mat-press-item {
        padding: 16px 4px 12px 4px;
    }
    .press-title, .press-date {
        font-size: 1em;
    }
} 