.akropolys-news-page {
    padding-top: 0;
}

.akropolys-news-page .news-page-title {
    margin: 0 0 22px;
    color: #342e2b;
    font: 28px/1.25 'Book Antiqua', Georgia, serif;
}

.akropolys-news-page .news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 0 0 10px;
}

.akropolys-news-page .news-card,
.akropolys-news-page .news-card:first-child {
    float: none;
    display: flex;
    flex-direction: column;
    width: auto;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e2ded5;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 2px 9px rgba(63, 54, 45, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.akropolys-news-page .news-card:hover {
    border-color: #d3c8b5;
    box-shadow: 0 5px 16px rgba(63, 54, 45, 0.14);
    transform: translateY(-2px);
}

.akropolys-news-page .news-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 158px;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #eeeae2;
    box-shadow: none;
}

.akropolys-news-page .news-card-image:hover {
    box-shadow: none;
}

.akropolys-news-page .news-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.akropolys-news-page .news-card:hover .news-card-image img {
    transform: scale(1.025);
}

.akropolys-news-page .news-card-placeholder {
    color: #a89c8a;
    font: 18px/1 Georgia, serif;
    letter-spacing: 0.12em;
}

.akropolys-news-page .news-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 15px 17px 17px;
}

.akropolys-news-page .news-card-date {
    display: block;
    margin: 0 0 7px;
    color: #9b8d7d;
    font: 11px/1.3 Arial, sans-serif;
    letter-spacing: 0.04em;
}

.akropolys-news-page .news-card-title,
.akropolys-news-page .index_news h2.news-card-title {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 9px;
    overflow: hidden;
    color: #4c433e;
    font: italic 18px/1.22 'Book Antiqua', Georgia, serif;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.akropolys-news-page .news-card-title a {
    color: inherit;
    text-decoration: none;
}

.akropolys-news-page .news-card-title a:hover {
    color: #8d3b32;
    text-decoration: underline;
}

.akropolys-news-page .news-card-excerpt,
.akropolys-news-page .index_news p.news-card-excerpt {
    display: -webkit-box;
    min-height: 42px;
    margin: 0 0 14px;
    padding: 0;
    overflow: hidden;
    color: #625b56;
    font: 14px/1.5 Arial, sans-serif;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.akropolys-news-page .news-card-more {
    align-self: flex-start;
    margin-top: auto;
    color: #9a3f35;
    font: 13px/1.3 Arial, sans-serif;
    text-decoration: underline;
}

.akropolys-news-page .news-card-more:hover {
    color: #6f2821;
    text-decoration: none;
}

.akropolys-news-page .news-page-empty {
    margin: 0;
    padding: 18px;
    border: 1px solid #e2ded5;
    background: rgba(255, 255, 255, 0.65);
}

@media (max-width: 720px) {
    .akropolys-news-page .news-page-title {
        margin-bottom: 18px;
        font-size: 25px;
    }

    .akropolys-news-page .news-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .akropolys-news-page .news-card-image {
        height: auto;
        aspect-ratio: 16 / 7;
    }

    .akropolys-news-page .news-card-body {
        padding: 14px 15px 16px;
    }

    .akropolys-news-page .news-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .akropolys-news-page .news-card,
    .akropolys-news-page .news-card-image img {
        transition: none;
    }
}
