.circulars-page {
    padding: 36px 64px 58px;
    background: #f4f7fb;
}

.circulars-page__inner {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.circulars-page__intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 18px;
}

.circulars-page__intro h2 {
    margin: 0;
    color: var(--site-navy);
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.15;
}

.circulars-page__intro p {
    margin: 5px 0 0;
    color: #52627b;
    font-size: 14px;
    line-height: 1.5;
}

.circulars-page__count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    color: #53637b;
    background: #fff;
    border: 1px solid #d9e1ec;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.circulars-page__count i {
    color: var(--site-red);
}

.circular-list {
    display: grid;
    gap: 10px;
}

.circular-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #d9e1ec;
    border-radius: 7px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.circular-item:hover {
    border-color: #bcc9d9;
    box-shadow: 0 8px 22px rgba(7, 30, 84, .05);
}

.circular-item__mark {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-red);
    background: #fff3f0;
    border: 1px solid #f4d8d2;
    border-radius: 6px;
}

.circular-item__mark i {
    font-size: 20px;
}

.circular-item__content {
    min-width: 0;
}

.circular-item__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 5px;
    color: #6a7890;
    font-size: 14px;
    font-weight: 600;
}

.circular-item__meta span {
    color: #274b7a;
    font-weight: 700;
}

.circular-item__meta time::before {
    margin-right: 10px;
    color: #b7c2d1;
    content: "•";
}

.circular-item__content h3 {
    margin: 0;
    color: var(--site-navy);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.circular-item__content > p:last-child {
    max-width: 720px;
    margin: 5px 0 0;
    color: #52627b;
    font-size: 14px;
    line-height: 1.5;
}

.circular-item__download {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    color: #174678 !important;
    background: #fff;
    border: 1px solid #cbd7e6;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.circular-item__download:hover,
.circular-item__download:focus-visible {
    color: #fff;
    background: var(--site-navy);
    border-color: var(--site-navy);
}

.circular-list__empty {
    min-height: 220px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    background: #fff;
    border: 1px solid #d9e1ec;
    border-radius: 7px;
    color: #65748d;
    text-align: center;
}

.circular-list__empty i {
    color: #8b9bb0;
    font-size: 30px;
}

.circular-list__empty h2 {
    margin: 13px 0 0;
    color: var(--site-navy);
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.circular-list__empty p {
    margin: 7px 0 0;
    font-size: 14px;
}

@media (max-width: 900px) {
    .circulars-page {
        padding-right: 32px;
        padding-left: 32px;
    }

    .circular-item {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .circular-item__download {
        width: max-content;
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .circulars-page {
        padding: 30px 18px 42px;
    }

    .circulars-page__intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .circulars-page__intro h2 {
        font-size: 24px;
    }

    .circular-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
        padding: 16px;
    }

    .circular-item__mark {
        width: 42px;
        height: 42px;
    }

    .circular-item__meta {
        flex-wrap: wrap;
    }

    .circular-item__content h3 {
        font-size: 18px;
    }

    .circular-item__download {
        width: max-content;
        grid-column: 2;
    }
}
