/**
 * Ostatnie wpisy - domyślne style kart
 * Nadpisywalne przez kontrolki Elementora (wyższa specyficzność via {{WRAPPER}})
 */

.ba-recent-posts {
    width: 100%;
}

/* === Karta wpisu === */
.ba-post-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* === Miniaturka === */
.ba-post-thumbnail {
    overflow: hidden;
}

.ba-post-thumbnail a {
    display: block;
    line-height: 0;
}

.ba-post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ba-post-card:hover .ba-post-thumbnail img {
    transform: scale(1.05);
}

/* === Treść karty === */
.ba-post-content {
    padding: 20px 24px 24px;
}

/* === Tytuł === */
.ba-post-title {
    margin: 0 0 8px;
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.3;
}

.ba-post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ba-post-title a:hover {
    color: #4A90D9;
}

/* === Data === */
.ba-post-date {
    display: block;
    margin-bottom: 12px;
    font-size: 0.85em;
    color: #7f8c8d;
}

/* === Treść wpisu === */
.ba-post-body {
    margin-bottom: 16px;
    color: #34495e;
    line-height: 1.6;
    font-size: 0.95em;
}

.ba-post-body p:last-child {
    margin-bottom: 0;
}

.ba-post-body img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* === Przycisk "Czytaj więcej" === */
.ba-post-read-more {
    display: inline-block;
    padding: 10px 22px;
    background-color: #547aa5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ba-post-read-more:hover {
    background-color: #4A90D9;
    color: #ffffff;
}

/* === Separator między wpisami === */
.ba-post-separator {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 30px auto;
    width: 100%;
}

/* === Komunikat: brak wpisów === */
.ba-no-posts {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 40px 20px;
}

/* === Responsywność === */
@media (max-width: 767px) {
    .ba-post-content {
        padding: 16px 18px 20px;
    }

    .ba-post-thumbnail img {
        height: 160px;
    }

    .ba-post-title {
        font-size: 1.15em;
    }
}
