.sn-grid {
    display: grid;
    gap: 30px;
    margin: 20px 0;
}

.sn-item {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e5e5e5;
    color: inherit;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Легкая тень по умолчанию */
}

/* Эффект увеличения и тени при наведении */
.sn-item:hover {
    transform: translateY(-5px) scale(1.02); /* Немного всплывает и увеличивается */
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* Аппетитная тень */
    z-index: 2; /* Чтобы перекрывать соседей при увеличении */
}

.sn-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}

.sn-cover-wrap {
    width: 100%;
    aspect-ratio: 210/297;
    background: #f9f9f9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.sn-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sn-item:hover .sn-cover {
    transform: scale(1.1); /* Еще более заметное увеличение картинки внутри */
}

.sn-no-cover {
    font-size: 64px;
    width: 64px;
    height: 64px;
    color: #ddd;
}

.sn-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e63946;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 6;
    pointer-events: none;
}

.sn-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    text-align: center;
}

.sn-title {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: bold;
    line-height: 1.3;
    color: #1d2327;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: color 0.2s;
}

.sn-item:hover .sn-title {
    color: #0073aa;
}

/* Стиль для описания */
.sn-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.sn-date {
    display: block;
    font-size: 12px;
    color: #444; /* Сделал цвет более темным и заметным (было #999) */
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700; /* Сделал чуть жирнее */
}
