/* ============================================
   Semenyuk Posts Widget [IWPM] — стиль під ihorsemenyuk.com
   ============================================ */

/* Сітка */
.spw-grid {
    display: grid;
    gap: 20px;
    width: 100%;
}

/* Картка — обводка + тінь як в блозі */
.spw-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.spw-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}

.spw-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* Фото */
.spw-card__image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: opacity 0.25s ease;
}

.spw-card__link:hover .spw-card__image {
    opacity: 0.9;
}

/* Тіло картки — паддинг з усіх сторін */
.spw-card__body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Заголовок */
.spw-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0 0 10px;
    transition: color 0.2s ease;
}

.spw-card__link:hover .spw-card__title {
    color: #222;
}

/* Excerpt */
.spw-card__excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: #666;
    margin: 0 0 14px;
    flex: 1;
}

/* Кнопка "Детальніше" */
.spw-card__more {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    text-decoration: none;
    margin-top: auto;
    background-color: #f0f0f0;
    width: -webkit-fill-available;
    padding: 5px 18px;
    align-self: flex-start;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.spw-card__link:hover .spw-card__more {
    color: #444;
    border-color: #444;
}

/* Немає постів */
.spw-no-posts {
    color: #888;
    font-size: 14px;
    padding: 20px 0;
}

/* ── Планшет ── */
@media (max-width: 1024px) {
    .spw-card__title {
        font-size: 15px;
    }
    .spw-card__body {
        padding: 14px 14px 16px;
    }
}

/* ── Мобільний ── */
@media (max-width: 767px) {
    .spw-card__image {
        height: 220px;
    }
    .spw-card__title {
        font-size: 16px;
    }
    .spw-card__excerpt {
        font-size: 14px;
    }
    .spw-card__body {
        padding: 14px 14px 16px;
    }
}
