.ac-get-news {
    width: 100%;
    justify-self: center;
    overflow: hidden;
    background: #fff;
    color: #001b4d;
    font-family: var(--tamc-font, "Noto Sans Hebrew", "Noto Sans Display", Arial, sans-serif);
}

.ac-get-news__inner {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding: 40px 16px;
}

.ac-get-news__title {
    margin: 0 0 40px;
    color: #001b4d;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

[dir="rtl"] .ac-get-news__title,
.rtl .ac-get-news__title {
    text-align: right;
}

.ac-get-news__card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 3px solid rgba(53, 128, 203, 0.4);
    border-radius: 20px;
    background: #1a4065;
}

.ac-get-news__card-link {
    position: relative;
    display: block;
    min-height: 355px;
    color: #fff;
    text-decoration: none;
}

.ac-get-news__image {
    display: block;
    width: 100%;
    height: 355px;
    margin: 0;
    border-radius: 17px;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    -webkit-user-drag: none;
}

.ac-get-news__card:hover .ac-get-news__image {
    opacity: 1;
}

.ac-get-news__badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    inset-inline-end: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(53, 128, 203, 0.4), rgba(26, 64, 101, 0.9));
    box-shadow: inset 5px 5px 4px rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    backdrop-filter: blur(20px);
}

.ac-get-news__info {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 140px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-top: 3px solid #aeccea;
    border-radius: 0 0 17px 17px;
    background: linear-gradient(180deg, rgba(53, 128, 203, 0.4), rgba(26, 64, 101, 0.9));
    box-shadow: inset 5px 5px 4px rgba(255, 255, 255, 0.08);
    text-align: center;
    backdrop-filter: blur(15px);
}

.ac-get-news__card-title,
.ac-get-news__excerpt {
    display: block;
    width: 100%;
    max-width: 310px;
    color: #fff;
    text-align: center;
}

.ac-get-news__card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
}

.ac-get-news__excerpt {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
}

.ac-get-news__empty {
    grid-column: 1 / -1;
    text-align: center;
}

.ac-get-news__more {
    margin-top: 40px;
    text-align: center;
}

.ac-get-news__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    min-height: 52px;
    padding: 12px 20px;
    border-radius: 3px;
    background: #246fae;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ac-get-news__button:hover,
.ac-get-news__button:focus-visible {
    background: #1a5a91;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .ac-get-news__inner {
        padding: 40px 0;
    }

    .ac-get-news__title {
        margin-bottom: 30px;
        padding-inline: 20px;
        font-size: 24px;
        text-align: center;
    }

    [dir="rtl"] .ac-get-news__title,
    .rtl .ac-get-news__title {
        text-align: center;
    }

    .ac-get-news__card-link,
    .ac-get-news__image {
        min-height: 300px;
        height: 300px;
    }

    .ac-get-news__info {
        min-height: 100px;
        gap: 5px;
        padding: 10px;
    }

    .ac-get-news__card-title {
        display: -webkit-box;
        overflow: hidden;
        font-size: 20px;
        line-height: 20px;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .ac-get-news__excerpt {
        display: -webkit-box;
        overflow: hidden;
        font-size: 14px;
        line-height: 15px;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .ac-get-news__more {
        margin-top: 30px;
        padding-inline: 20px;
    }

    .ac-get-news__button {
        width: 100%;
        max-width: none;
    }
}
