/* Site-only presentation for the tiled news list template. */
.na-news-card-grid {
    --na-news-card-accent: #2864d7;
    --na-news-card-text: #263241;
    --na-news-card-muted: #778291;
    --na-news-card-border: #e2e7ef;
    margin-right: -10px;
    margin-left: -10px;
}
.na-news-card-grid > .na-news-card {
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 20px !important;
}
.na-news-card__surface {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--na-news-card-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(31, 48, 72, .07);
    transition: border-color .18s ease, box-shadow .18s ease;
}
.na-news-card__surface:hover {
    border-color: #ccd6e3;
    box-shadow: 0 8px 22px rgba(31, 48, 72, .1);
}
.na-news-card__surface:focus-within {
    border-color: var(--na-news-card-accent);
    box-shadow: 0 0 0 3px rgba(40, 100, 215, .13);
}
.na-news-card__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f3f5f8;
}
.na-news-card__media > a {
    display: block;
    width: 100%;
    height: 100%;
}
.na-news-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.na-news-card__body {
    min-width: 0;
    padding: 16px;
}
.na-news-card__body > .field:not(.f_title) {
    margin-bottom: 12px;
    color: #536174;
    line-height: 1.5;
}
.na-news-card__title {
    margin: 0 0 14px;
    color: var(--na-news-card-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.38;
    overflow-wrap: anywhere;
}
.na-news-card__body .na-news-card__title a {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
}
.na-news-card__body .na-news-card__title a:hover {
    color: var(--na-news-card-accent);
    text-decoration: none;
}
.na-news-card__body .tags_bar {
    margin-bottom: 14px !important;
}
.na-news-card__body > .info_bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 14px;
    margin-top: auto !important;
    padding-top: 13px !important;
    border-top: 1px solid #edf0f4 !important;
    color: var(--na-news-card-muted);
    font-size: 13px;
    line-height: 1.35;
}
.na-news-card__body > .info_bar .bar_item {
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
    padding: 0;
    background: transparent;
}
.na-news-card__body > .info_bar .icms-svg-icon {
    width: 13px;
    height: 13px;
    margin-right: 5px;
}
.na-news-card__body > .info_bar .bi_date_pub .time {
    margin-left: .35em;
}
.na-news-card__body > .info_bar a {
    color: inherit;
    text-decoration: none;
}
.na-news-card__body > .info_bar a:hover {
    color: var(--na-news-card-accent);
}
.na-news-card__media .countdown-timer {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.3;
    box-shadow: 0 3px 10px rgba(9, 61, 108, .22);
}
@media (max-width: 575px) {
    .na-news-card-grid {
        margin-right: -8px;
        margin-left: -8px;
    }
    .na-news-card-grid > .na-news-card {
        padding-right: 8px;
        padding-left: 8px;
        margin-bottom: 16px !important;
    }
    .na-news-card__body {
        padding: 14px;
    }
    .na-news-card__title {
        margin-bottom: 12px;
        font-size: 15.5px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .na-news-card__surface {
        transition: none;
    }
}
