/*
 * Responsibility: layout and visuals for the nationwide /kierunek/ index page
 * (src/views/kierunek). Not used by any other route.
 */

body.kierunek-route {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    /* Gradient lives on body (not .kierunek-index) so the breadcrumb trail,
       which sits before .kierunek-index in the DOM, shares the same
       background instead of visibly seaming into a flat color above it. */
    background: linear-gradient(180deg, #EAF1FB 0%, #F5F8FC 420px, #F5F8FC 100%);
    /* Header is fixed (~91px tall); without this the whole route renders
       underneath it. Kept local to this route instead of the shared
       header.css rule that miasto/miasto-kierunek/miasto-uczelnia use, so a
       change here can't affect those routes. */
    padding-top: 91px;
}

@media (max-width: 991px) {
    body.kierunek-route {
        padding-top: 70px;
    }
}

.kierunek-index {
    padding-bottom: 64px;
}

/* Breadcrumbs are shared markup (src/shared/layout/breadcrumbs.php); its own
   stylesheet gives it a different max-width/padding (1350px/12px) than this
   route's own container (.kierunek-index__container, 1140px/16px), so on wide
   viewports it visibly drifts out of alignment with the hero title below it.
   Force the same box here instead of touching the shared rule other
   extracted routes rely on. */
body.kierunek-route .uczelnie-breadcrumb-wrap {
    max-width: 1140px;
    padding-left: 16px;
    padding-top: 18px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* The shared breadcrumb component renders a dark-navy pill with white text
   (built for the legacy hero-banner pages it was originally designed for).
   This route's hero is on a light background, so restyle it here as a plain
   text trail instead of overriding the shared component for every route. */
body.kierunek-route .breadcrumb {
    background: transparent !important;
    padding: 0;
    justify-content: center;
    font-size: 18px;
    line-height: 1.4;
    /* Bootstrap gives .breadcrumb a 1rem bottom margin; trimmed here so the
       trail sits closer to the hero title, as in the reference. */
    margin-bottom: 6px;
    --bs-breadcrumb-divider: ">";
}

body.kierunek-route .breadcrumb-item a.color-white {
    color: #1D5FCC !important;
    font-weight: 500;
}

/* The current page reads as dark, near-title text in the reference — not the
   muted grey a disabled item would normally get. */
body.kierunek-route .breadcrumb-item.active a.color-white {
    color: #334155 !important;
    font-weight: 500;
    pointer-events: none;
}

body.kierunek-route .breadcrumb-item + .breadcrumb-item {
    padding-left: 10px;
}

body.kierunek-route .breadcrumb-item + .breadcrumb-item::before {
    color: #94A3B8;
    padding-right: 10px;
}

.kierunek-index__container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* ---------- Hero ---------- */

.kierunek-hero {
    text-align: center;
    padding: 12px 0 8px;
}

.kierunek-hero__title {
    font-family: inherit;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    color: #10233F;
    margin: 0 0 14px;
}

.kierunek-hero__subtitle {
    max-width: 640px;
    margin: 0 auto 28px;
    color: #4A5A72;
    font-size: 17px;
    line-height: 1.55;
}

.kierunek-search {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(16, 35, 63, 0.08);
    padding: 10px 10px 10px 20px;
}

.kierunek-search__icon {
    display: flex;
    color: #8A97A8;
    flex: 0 0 auto;
}

.kierunek-search__input {
    flex: 1 1 auto;
    border: none;
    outline: none;
    font-size: 16px;
    color: #10233F;
    background: transparent;
    min-width: 0;
}

.kierunek-search__input::placeholder {
    color: #9AA6B5;
}

.kierunek-search__button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: #1D5FCC;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color .15s ease;
}

.kierunek-search__button:hover {
    background: #164EA8;
}

/* ---------- Search suggestions ---------- */

.kierunek-suggest {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 40;
    max-height: 420px;
    overflow-y: auto;
    text-align: left;
    background: #fff;
    border: 1px solid #E7ECF3;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(16, 35, 63, .14);
    padding: 6px;
}

.kierunek-suggest[hidden] {
    display: none;
}

.kierunek-suggest__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #1D2B3F;
    text-decoration: none;
    cursor: pointer;
}

.kierunek-suggest__item:hover,
.kierunek-suggest__item.is-active {
    background: #F1F5FB;
    text-decoration: none;
    color: #10233F;
}

.kierunek-suggest__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border-radius: 9px;
    background: #EAF1FB;
    color: #1D5FCC;
}

.kierunek-suggest__text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14.5px;
    /* A long field name must not push the row wider than the panel. */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* The matched fragment of the name, marked up as the user typed it. */
.kierunek-suggest__text mark {
    background: transparent;
    color: #1D5FCC;
    font-weight: 700;
    padding: 0;
}

.kierunek-suggest__status {
    padding: 14px 12px;
    font-size: 14px;
    color: #7A879A;
}

@media (max-width: 560px) {
    .kierunek-suggest {
        max-height: 320px;
    }
}

.kierunek-trending {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0;
    max-width: 100%;
}

@media (min-width: 900px) {
    .kierunek-trending {
        flex-wrap: nowrap;
    }
}

.kierunek-trending__label {
    color: #5B6B82;
    font-size: 14px;
    margin-right: 2px;
}

/* Chips render as links (a field's own page) and, only when a field has no
   slug, as a filter button — so the rule has to cover both elements. */
.kierunek-chip {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #D8E1EE;
    background: #fff;
    color: #1D5FCC;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease;
}

.kierunek-chip:hover,
.kierunek-chip.is-active {
    background: #EAF1FB;
    border-color: #1D5FCC;
    color: #1D5FCC;
    text-decoration: none;
}

.kierunek-trending__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    color: #1D5FCC;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 7px 4px;
}

/* ---------- Stats ---------- */

.kierunek-stats {
    margin: 32px auto 0;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(16, 35, 63, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.kierunek-stats__divider {
    width: 1px;
    align-self: stretch;
    background: #E7ECF3;
    display: none;
}

@media (min-width: 768px) {
    .kierunek-stats__divider {
        display: block;
    }
}

.kierunek-stats__item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 220px;
    justify-content: center;
}

/* Below 768px items wrap one-per-row; "justify-content: space-between" on a
   single wrapped item pins it to one side instead of centering it, so switch
   to a plain left-aligned stacked list instead of trying to force centering. */
@media (max-width: 767px) {
    .kierunek-stats {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 22px;
        gap: 18px;
    }

    .kierunek-stats__item {
        flex: none;
        width: 100%;
        justify-content: flex-start;
    }
}

.kierunek-stats__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #EAF1FB;
    color: #1D5FCC;
    flex: 0 0 auto;
}

.kierunek-stats__text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.kierunek-stats__value {
    font-size: 24px;
    font-weight: 700;
    color: #10233F;
    line-height: 1.2;
}

.kierunek-stats__label {
    font-size: 13.5px;
    color: #5B6B82;
}

/* ---------- Tabs ---------- */

.kierunek-tabs {
    margin-top: 44px;
}

/* Section titles stay in the page font (inherited from body.kierunek-route)
   rather than the reference's serif: mixing a second face into one page made
   these headings read as belonging to a different site. Only the tracking is
   tightened, which is what display sizes need. */
.kierunek-tabs__heading,
.kierunek-section-head__title {
    color: #10233F;
    font-weight: 700;
    letter-spacing: -.015em;
}

.kierunek-tabs__heading {
    text-align: center;
    font-size: clamp(22px, 3vw, 28px);
    margin: 0 0 24px;
}

.kierunek-tabs__nav {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.kierunek-tabs__tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    border: none;
    background: transparent;
    color: #10233F;
    text-align: left;
    padding: 14px 26px;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}

/* Thin separators between the choices, exactly as in the reference: drawn
   between items only, and dropped on the active one so its filled panel
   reads as a single block. */
.kierunek-tabs__tab + .kierunek-tabs__tab::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: #E1E7F0;
}

.kierunek-tabs__tab.is-active::before,
.kierunek-tabs__tab.is-active + .kierunek-tabs__tab::before {
    display: none;
}

.kierunek-tabs__tab.is-active {
    background: #E8EFFB;
}

/* The active marker sits under the tab, centred and short, like the
   reference's blue rule. */
.kierunek-tabs__tab.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 46px;
    height: 3px;
    border-radius: 2px;
    background: #1D5FCC;
}

.kierunek-tabs__tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    color: #4A5A72;
}

.kierunek-tabs__tab-icon--text {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.5px;
}

.kierunek-tabs__tab.is-active .kierunek-tabs__tab-icon {
    color: #1D5FCC;
}

.kierunek-tabs__tab-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kierunek-tabs__tab-title {
    font-size: 15px;
    font-weight: 600;
    color: #10233F;
}

.kierunek-tabs__tab-desc {
    font-size: 12.5px;
    color: #6B7A8F;
}

@media (max-width: 767px) {
    .kierunek-tabs__nav {
        flex-direction: column;
        gap: 6px;
    }

    .kierunek-tabs__tab {
        width: 100%;
        padding: 12px 16px;
    }

    .kierunek-tabs__tab + .kierunek-tabs__tab::before,
    .kierunek-tabs__tab.is-active::after {
        display: none;
    }
}

.kierunek-tabs__panel {
    display: none;
}

.kierunek-tabs__panel.is-active {
    display: block;
}

/* ---------- Section headers (eyebrow / title / subtitle) ---------- */

.kierunek-section-head {
    margin-bottom: 26px;
}

.kierunek-section-head__eyebrow {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #1D5FCC;
    margin-bottom: 8px;
}

.kierunek-section-head__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.kierunek-section-head__title {
    font-size: clamp(24px, 3.4vw, 32px);
    margin: 0;
}

.kierunek-section-head__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    color: #1D5FCC;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px;
}

.kierunek-section-head__link:hover {
    text-decoration: underline;
}

.kierunek-section-head__subtitle {
    margin: 10px 0 0;
    color: #5B6B82;
    font-size: 14.5px;
    line-height: 1.55;
}

/* ---------- Category cards ---------- */

.kierunek-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 991px) {
    .kierunek-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .kierunek-categories {
        grid-template-columns: 1fr;
    }
}

.kierunek-category-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(16, 35, 63, 0.05);
    border: 1px solid transparent;
    transition: border-color .15s ease, transform .15s ease;
    cursor: pointer;
}

.kierunek-category-card:hover {
    border-color: #C9D8F0;
    transform: translateY(-2px);
}

.kierunek-category-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.kierunek-category-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.kierunek-category-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #E7ECF3;
    background: #fff;
    color: #5B6B82;
    cursor: pointer;
}

.kierunek-category-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #10233F;
    margin: 0 0 4px;
}

.kierunek-category-card__count {
    font-size: 13.5px;
    color: #1D5FCC;
    font-weight: 600;
    margin: 0 0 8px;
}

.kierunek-category-card__examples {
    font-size: 13px;
    color: #7A879A;
    margin: 0;
    line-height: 1.5;
}

.kierunek-categories__more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 20px auto 0;
    border: none;
    background: transparent;
    color: #1D5FCC;
    font-size: 14.5px;
    font-weight: 600;
    padding: 4px;
    cursor: pointer;
}

.kierunek-categories__more:hover {
    text-decoration: underline;
}

/* ---------- Popular fields grid ---------- */

.kierunek-popular {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 1199px) {
    .kierunek-popular {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .kierunek-popular {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .kierunek-popular {
        grid-template-columns: repeat(2, 1fr);
    }
}

.kierunek-popular-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #EBF0F7;
    border-radius: 16px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 14px rgba(16, 35, 63, 0.04);
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

a.kierunek-popular-card:hover {
    border-color: #C9D8F0;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(16, 35, 63, 0.08);
    text-decoration: none;
}

.kierunek-popular-card[hidden] {
    display: none;
}

.kierunek-popular-card__rank {
    align-self: flex-start;
    display: inline-block;
    min-width: 22px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    color: #1D5FCC;
    background: #EEF3FC;
    border-radius: 7px;
    padding: 2px 6px;
    margin-bottom: 12px;
}

.kierunek-popular-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    margin-bottom: 14px;
}

.kierunek-popular-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #10233F;
    line-height: 1.35;
    margin-bottom: 4px;
}

.kierunek-popular-card__count {
    font-size: 13px;
    color: #6B7A8F;
}

/* Pushed to the bottom so cards with a two-line name still line their
   arrows up with the single-line ones next to them. */
.kierunek-popular-card__foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
}

.kierunek-popular-card__arrow {
    display: flex;
    align-items: center;
    color: #8A97A8;
    margin-left: auto;
}

a.kierunek-popular-card:hover .kierunek-popular-card__arrow {
    color: #1D5FCC;
}

/* ---------- Flat / A-Z lists ---------- */

.kierunek-az__letters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    background: #fff;
    border: 1px solid #EBF0F7;
    border-radius: 14px;
    padding: 8px 10px;
    margin-bottom: 20px;
}

.kierunek-az__letter-btn {
    position: relative;
    border: none;
    background: transparent;
    color: #4A5A72;
    font-size: 14px;
    font-weight: 500;
    min-width: 34px;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}

/* "Wszystkie" is the label, not a letter, so it gets a divider after it. */
.kierunek-az__letter-btn:first-child {
    font-weight: 600;
    color: #10233F;
    margin-right: 10px;
}

.kierunek-az__letter-btn:first-child::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: #E7ECF3;
}

.kierunek-az__letter-btn:hover {
    background: #F1F5FB;
}

.kierunek-az__letter-btn.is-active {
    background: #E8EFFB;
    color: #1D5FCC;
    font-weight: 700;
}

.kierunek-az__group {
    background: #fff;
    border: 1px solid #EBF0F7;
    border-radius: 16px;
    padding: 22px 26px 10px;
    margin-bottom: 18px;
}

.kierunek-az__group-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #EDF1F6;
    margin-bottom: 6px;
}

.kierunek-az__letter {
    font-size: 30px;
    font-weight: 700;
    color: #1D5FCC;
    line-height: 1;
}

.kierunek-az__group-count {
    font-size: 13.5px;
    color: #6B7A8F;
}

.kierunek-az__empty {
    color: #7A879A;
    font-size: 14px;
    padding: 20px 0;
}

.kierunek-flat-list {
    list-style: none;
    /* Pulled left by the per-item padding so the first column still lines up
       with the letter heading above it. */
    margin: 0 0 0 -22px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

/* Column dividers, as in the reference: a rule between columns rather than a
   box around every cell. The first item of each row drops its rule. */
.kierunek-flat-list__item {
    font-size: 14.5px;
    border-left: 1px solid #EDF1F6;
    padding: 0 22px;
}

.kierunek-flat-list__item:nth-child(4n + 1) {
    border-left-color: transparent;
}

@media (max-width: 1199px) {
    .kierunek-flat-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .kierunek-flat-list__item:nth-child(4n + 1) {
        border-left-color: #EDF1F6;
    }

    .kierunek-flat-list__item:nth-child(3n + 1) {
        border-left-color: transparent;
    }
}

@media (max-width: 991px) {
    .kierunek-flat-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .kierunek-flat-list__item:nth-child(3n + 1) {
        border-left-color: #EDF1F6;
    }

    .kierunek-flat-list__item:nth-child(odd) {
        border-left-color: transparent;
    }
}

@media (max-width: 560px) {
    .kierunek-flat-list {
        grid-template-columns: 1fr;
    }

    .kierunek-flat-list__item {
        border-left-color: transparent;
    }
}

.kierunek-flat-list__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    color: inherit;
    text-decoration: none;
}

a.kierunek-flat-list__link:hover {
    text-decoration: none;
}

a.kierunek-flat-list__link:hover .kierunek-flat-list__name {
    color: #1D5FCC;
}

.kierunek-flat-list__name {
    color: #1D2B3F;
    flex: 1 1 auto;
    min-width: 0;
}

.kierunek-flat-list__count {
    color: #1D5FCC;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.kierunek-flat-list__link--plain .kierunek-flat-list__count {
    color: #9AA6B5;
    font-weight: 500;
}

.kierunek-flat-list__arrow {
    display: flex;
    align-items: center;
    color: #9AA6B5;
    flex: 0 0 auto;
}

.kierunek-flat-list__link--plain .kierunek-flat-list__arrow {
    visibility: hidden;
}

a.kierunek-flat-list__link:hover .kierunek-flat-list__arrow {
    color: #1D5FCC;
}

.kierunek-flat-list__item[hidden] {
    display: none;
}

/* ---------- A-Z footer blocks ---------- */

.kierunek-az__cta {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #EBF0F7;
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 24px;
}

.kierunek-az__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EAF1FB;
    color: #1D5FCC;
    flex: 0 0 auto;
}

.kierunek-az__cta-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1 1 auto;
}

.kierunek-az__cta-title {
    font-size: 16px;
    font-weight: 700;
    color: #10233F;
}

.kierunek-az__cta-desc {
    font-size: 14px;
    color: #5B6B82;
    line-height: 1.5;
}

.kierunek-az__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    border: none;
    background: #1D5FCC;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color .15s ease;
}

.kierunek-az__cta-button:hover {
    background: #164EA8;
}

@media (max-width: 767px) {
    .kierunek-az__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .kierunek-az__cta-button {
        width: 100%;
        justify-content: center;
    }

    .kierunek-az__group {
        padding: 18px 18px 6px;
    }
}

.kierunek-az__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 0;
    color: #7A879A;
    font-size: 13.5px;
}
