/* ===== MAGAZINE PAGE ===== */
.magazine-page {
    padding: 60px 0;
    background: #fff; /* белый фон для отличия */
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffcc29; /* жёлтый цвет */
    margin-bottom: 15px;
}

.page-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 18px;
}

/* Сетка карточек */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Карточка журнала */
.magazine-card {
    background: #f8f8f8; /* чуть другой фон */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    align-items: start;
}
.magazine-card__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.magazine-card__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.magazine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.magazine-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.magazine-card__image {
    height: 220px;
    overflow: hidden;
}

.magazine-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.magazine-card:hover .magazine-card__image img {
    transform: scale(1.1);
}

.magazine-card__content {
    padding: 25px;
}

.magazine-card__date {
    display: inline-block;
    background: #ffcc29; /* жёлтый */
    color: #111;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.magazine-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #222;
}

.magazine-card__excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0px;
}

.magazine-card__more {
    color: #ffcc29; /* жёлтый */
    font-weight: 600;
    font-size: 14px;
    transition: letter-spacing 0.3s;
}

.magazine-card:hover .magazine-card__more {
    letter-spacing: 1px;
}

/* Пагинация */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination .current {
    background: #ffcc29; /* жёлтый */
    color: #111;
    border-color: #ffcc29;
}

.pagination a:hover {
    background: #ffcc29;
    color: #111;
    border-color: #ffcc29;
}

/* Адаптив */
@media (max-width: 992px) {
    .magazine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .magazine-grid {
        grid-template-columns: 1fr;
    }
    .page-title {
        font-size: 32px;
    }
}