/* ============================================================
   T.K BUSINESS CONSULTING
   PREMIUM ANNOUNCEMENTS
============================================================ */

:root {
    --ann-blue: #1d43fe;
    --ann-blue-dark: #1535d2;
    --ann-blue-soft: #eef3ff;
    --ann-blue-line: #dce5ff;

    --ann-ink: #17213a;
    --ann-ink-soft: #3f4b63;
    --ann-muted: #718096;
    --ann-subtle: #9aa5b7;

    --ann-bg: #f7f9fc;
    --ann-white: #ffffff;

    --ann-line: #e8edf4;
    --ann-line-dark: #dce3ed;

    --ann-green: #159947;
    --ann-green-bg: #effaf3;
    --ann-green-line: #ccebd7;

    --ann-orange: #d98218;
    --ann-orange-bg: #fff8ed;
    --ann-orange-line: #f7dfb8;

    --ann-gray-bg: #f4f6f9;

    --ann-radius: 12px;
    --ann-radius-lg: 18px;

    --ann-shadow:
        0 1px 2px rgba(16, 24, 40, 0.03),
        0 8px 30px rgba(16, 24, 40, 0.035);

    --ann-shadow-hover:
        0 12px 35px rgba(29, 67, 254, 0.08);

    --ann-transition: 180ms ease;
}


/* ============================================================
   PAGE
============================================================ */

.ann-page {
    position: relative;
    min-height: 70vh;
    padding: 52px 0 72px;

    background:
        radial-gradient(
            circle at 92% 4%,
            rgba(29, 67, 254, 0.045),
            transparent 24%
        ),
        var(--ann-bg);
}


/* ============================================================
   HERO
============================================================ */

.ann-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
    margin-bottom: 28px;
}

.ann-hero__content {
    min-width: 0;
}

.ann-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 9px;

    color: var(--ann-blue);

    font-size: 11px;
    font-weight: 750;

    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ann-eyebrow__line {
    width: 22px;
    height: 1.5px;

    background: var(--ann-blue);
    border-radius: 99px;
}

.ann-eyebrow__dot {
    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    border-radius: 50%;
    background: var(--ann-blue);

    box-shadow:
        0 0 0 4px rgba(29, 67, 254, 0.08);
}

/*
   Supports both:
   .ann-title
   .title
*/
.ann-title,
.ann-hero .title {
    margin: 0 0 7px;

    color: var(--ann-ink);

    font-size: clamp(28px, 3vw, 38px);
    font-weight: 750;
    line-height: 1.15;
}

.ann-desc {
    max-width: 600px;

    margin: 0;

    color: var(--ann-muted);

    font-size: 14px;
    line-height: 1.7;
}

.ann-hero__mark {
    width: 68px;
    height: 68px;

    flex: 0 0 auto;

    padding: 7px;

    border: 1px solid var(--ann-blue-line);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3f6ff
        );

    box-shadow:
        0 10px 30px rgba(29, 67, 254, 0.08);
}

.ann-hero__mark-inner {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: var(--ann-blue);
    background: var(--ann-blue-soft);
}


/* ============================================================
   FILTER
============================================================ */

.ann-filter {
    position: relative;

    margin-bottom: 18px;

    border: 1px solid var(--ann-line);
    border-radius: var(--ann-radius-lg);

    background: var(--ann-white);

    box-shadow: var(--ann-shadow);

    overflow: hidden;
}

.ann-filter__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 20px;

    border-bottom: 1px solid var(--ann-line);

    background:
        linear-gradient(
            90deg,
            #fbfcff,
            #ffffff
        );
}

.ann-filter__title {
    display: flex;
    align-items: center;

    gap: 11px;
}

.ann-filter__icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--ann-blue);

    border: 1px solid var(--ann-blue-line);
    border-radius: 10px;

    background: var(--ann-blue-soft);
}

.ann-filter__title strong {
    display: block;

    color: var(--ann-ink);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.ann-filter__title small {
    display: block;

    margin-top: 2px;

    color: var(--ann-subtle);

    font-size: 11px;
}

.ann-filter__hint {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--ann-subtle);

    font-size: 11px;
    font-weight: 600;
}

.ann-filter__hint-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--ann-green);

    box-shadow:
        0 0 0 4px rgba(21, 153, 71, 0.08);
}

.ann-filter__body {
    display: grid;

    grid-template-columns:
        0.85fr
        0.95fr
        1fr
        1.5fr
        auto;

    gap: 12px;

    padding: 18px 20px;

    align-items: end;
}


/* ============================================================
   FILTER FIELDS
============================================================ */

.ann-field {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.ann-field__label {
    display: flex;
    align-items: center;

    gap: 6px;

    color: var(--ann-ink-soft);

    font-size: 11.5px;
    font-weight: 650;
}

.ann-field__label-icon {
    display: flex;

    color: var(--ann-subtle);
}

.ann-control,
.ann-input-wrap {
    position: relative;
}

.ann-select,
.ann-input {
    width: 100%;
    height: 42px;

    border: 1px solid var(--ann-line-dark);
    border-radius: 11px;

    outline: none;

    background: #fbfcfe;
    color: var(--ann-ink);

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color var(--ann-transition),
        background var(--ann-transition),
        box-shadow var(--ann-transition);
}

.ann-select {
    padding: 0 38px 0 12px;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}

.ann-input {
    padding: 0 12px;
}

.ann-select:hover,
.ann-input:hover {
    border-color: #cbd5e5;
    background: #fff;
}

.ann-select:focus,
.ann-input:focus {
    border-color: var(--ann-blue);

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(29, 67, 254, 0.08);
}

.ann-select::placeholder,
.ann-input::placeholder {
    color: #a4adbb;
}

.ann-control__arrow {
    position: absolute;

    top: 50%;
    right: 12px;

    display: flex;

    color: var(--ann-subtle);

    pointer-events: none;

    transform: translateY(-50%);
}

.ann-input-wrap--search .ann-input {
    padding-right: 40px;
}

.ann-input__search-icon {
    position: absolute;

    top: 50%;
    right: 12px;

    display: flex;

    color: var(--ann-subtle);

    pointer-events: none;

    transform: translateY(-50%);
}


/* ============================================================
   FILTER ACTIONS
============================================================ */

.ann-filter__actions {
    display: flex;
    align-items: center;

    gap: 7px;
}

.ann-search-btn {
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 17px;

    border: 1px solid var(--ann-blue);
    border-radius: 11px;

    color: #fff !important;
    background: var(--ann-blue);

    font-family: inherit;
    font-size: 13px;
    font-weight: 650;

    cursor: pointer;
    white-space: nowrap;

    box-shadow:
        0 7px 16px rgba(29, 67, 254, 0.16);

    transition:
        transform var(--ann-transition),
        background var(--ann-transition),
        color var(--ann-transition),
        border-color var(--ann-transition),
        box-shadow var(--ann-transition);
}

.ann-search-btn:hover,
.ann-search-btn:focus,
.ann-search-btn:focus-visible {
    color: #fff !important;

    background: var(--ann-blue-dark);
    border-color: var(--ann-blue-dark);

    box-shadow:
        0 10px 22px rgba(29, 67, 254, 0.22);

    transform: translateY(-1px);
}

.ann-search-btn:hover i,
.ann-search-btn:hover svg,
.ann-search-btn:focus i,
.ann-search-btn:focus svg {
    color: #fff !important;
    fill: currentColor;
}

.ann-search-btn:active {
    color: #fff !important;

    transform: translateY(0) scale(0.98);
}

.ann-reset-btn {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid var(--ann-line-dark);
    border-radius: 11px;

    color: var(--ann-muted);
    background: #fff;

    cursor: pointer;

    transition:
        border-color var(--ann-transition),
        color var(--ann-transition),
        background var(--ann-transition),
        transform var(--ann-transition);
}

.ann-reset-btn:hover {
    color: var(--ann-blue);

    border-color: var(--ann-blue-line);

    background: var(--ann-blue-soft);

    transform: rotate(-10deg);
}


/* ============================================================
   ACTIVE TAGS
============================================================ */

.ann-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    padding: 0 20px 15px;
}

.ann-tags:empty {
    display: none;
}

.ann-tag {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    padding: 5px 8px 5px 10px;

    border: 1px solid var(--ann-blue-line);
    border-radius: 999px;

    color: var(--ann-blue);
    background: var(--ann-blue-soft);

    font-size: 11px;
    font-weight: 650;
}

.ann-tag button {
    width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    color: var(--ann-blue);
    background: transparent;

    cursor: pointer;
}

.ann-tag button:hover {
    background: rgba(29, 67, 254, 0.1);
}


/* ============================================================
   RESULTS CARD
============================================================ */

.ann-results {
    border: 1px solid var(--ann-line);
    border-radius: var(--ann-radius-lg);

    background: var(--ann-white);

    box-shadow: var(--ann-shadow);

    overflow: hidden;
}

.ann-results__header {
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 13px 20px;

    border-bottom: 1px solid var(--ann-line);
}

.ann-results__title {
    display: flex;
    align-items: center;

    gap: 11px;
}

.ann-results__title-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--ann-blue);

    border: 1px solid var(--ann-blue-line);
    border-radius: 10px;

    background: var(--ann-blue-soft);
}

.ann-results__title strong {
    display: block;

    color: var(--ann-ink);

    font-size: 13px;
    font-weight: 700;
}

.ann-results__title span {
    display: block;

    margin-top: 2px;

    color: var(--ann-subtle);

    font-size: 11px;
}

.ann-results__status {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    border: 1px solid var(--ann-green-line);
    border-radius: 999px;

    color: var(--ann-green);
    background: var(--ann-green-bg);

    font-size: 10.5px;
    font-weight: 650;
}

.ann-results__status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--ann-green);

    box-shadow:
        0 0 0 3px rgba(21, 153, 71, 0.08);
}


/* ============================================================
   TABLE SCROLL
============================================================ */

.ann-table-scroll {
    position: relative;

    width: 100%;

    overflow-x: auto;

    scrollbar-width: thin;
    scrollbar-color: #d9e0eb transparent;
}

.ann-table-scroll::-webkit-scrollbar {
    height: 7px;
}

.ann-table-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.ann-table-scroll::-webkit-scrollbar-thumb {
    background: #d9e0eb;
    border-radius: 999px;
}

.ann-table-scroll::-webkit-scrollbar-thumb:hover {
    background: #c7d0de;
}

.ann-table-wrapper {
    position: relative;

    width: 100%;
}


/* ============================================================
   TABLE
============================================================ */

.ann-table {
    width: 100%;

    min-width: 980px;

    margin: 0;

    border-collapse: collapse;

    font-size: 13px;
}

.ann-th {
    padding: 12px 14px;

    border-bottom: 1px solid var(--ann-line);

    color: #7b8799;
    background: #fafbfc;

    font-size: 10.5px;
    font-weight: 750;

    text-align: left;

    text-transform: uppercase;

    white-space: nowrap;
}

.ann-th--num {
    width: 52px;

    text-align: center;
}

.ann-th--center {
    text-align: center;
}

.ann-tr {
    border-bottom: 1px solid #edf1f5;

    transition:
        background var(--ann-transition),
        box-shadow var(--ann-transition);
}

.ann-tr:last-child {
    border-bottom: 0;
}

.ann-tr:hover {
    background: #fbfcff;

    box-shadow:
        inset 3px 0 0 var(--ann-blue);
}

.ann-td {
    padding: 15px 14px;

    color: var(--ann-ink);

    vertical-align: middle;
}

.ann-td--num {
    text-align: center;
}

.ann-td--center {
    text-align: center;
}

.ann-td--title {
    min-width: 300px;
}

.ann-row-number {
    width: 26px;
    height: 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: var(--ann-subtle);
    background: #f7f8fa;

    font-size: 11px;
    font-weight: 650;
}


/* ============================================================
   ANNOUNCEMENT ITEM
============================================================ */

.ann-item {
    display: flex;
    align-items: center;

    gap: 11px;
}

.ann-item__icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid var(--ann-blue-line);
    border-radius: 11px;

    color: var(--ann-blue);

    background:
        linear-gradient(
            145deg,
            #f4f7ff,
            #eaf0ff
        );

    transition:
        transform var(--ann-transition),
        box-shadow var(--ann-transition);
}

.ann-tr:hover .ann-item__icon {
    transform: translateY(-1px);

    box-shadow:
        0 5px 13px rgba(29, 67, 254, 0.1);
}

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

.ann-item__title {
    display: block;

    overflow: hidden;

    color: var(--ann-ink);

    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.ann-item__meta {
    display: block;

    margin-top: 3px;

    color: var(--ann-subtle);

    font-size: 10.5px;
}


/* ============================================================
   TABLE DATA
============================================================ */

.ann-doc {
    display: inline-flex;
    align-items: center;

    color: var(--ann-ink-soft);

    font-size: 11.5px;
    font-weight: 600;

    white-space: nowrap;
}

.ann-category {
    color: var(--ann-muted);

    font-size: 12px;
}

.ann-source {
    color: var(--ann-muted);

    font-size: 12px;
}


/* ============================================================
   DATE
============================================================ */

.ann-date {
    display: inline-flex;
    align-items: center;

    gap: 8px;
}

.ann-date__day {
    color: var(--ann-ink);

    font-size: 16px;
    font-weight: 750;

    line-height: 1;

    font-variant-numeric: tabular-nums;
}

.ann-date__month {
    color: var(--ann-subtle);

    font-size: 10.5px;
    font-weight: 550;

    text-align: left;

    white-space: nowrap;
}


/* ============================================================
   STATUS
============================================================ */

.ann-status {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 5px 9px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 10.5px;
    font-weight: 700;

    white-space: nowrap;
}

.ann-status__dot {
    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    border-radius: 50%;
}

.ann-status--published {
    border-color: var(--ann-green-line);

    color: var(--ann-green);
    background: var(--ann-green-bg);
}

.ann-status--published .ann-status__dot {
    background: var(--ann-green);
}

.ann-status--draft {
    border-color: var(--ann-orange-line);

    color: var(--ann-orange);
    background: var(--ann-orange-bg);
}

.ann-status--draft .ann-status__dot {
    background: var(--ann-orange);
}

.ann-status--archived {
    border-color: var(--ann-line);

    color: var(--ann-muted);
    background: var(--ann-gray-bg);
}

.ann-status--archived .ann-status__dot {
    background: #a3adbb;
}


/* ============================================================
   DOWNLOAD
============================================================ */

.ann-actions {
    display: flex;

    justify-content: center;
}

.ann-download {
    min-width: 38px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 10px;

    border: 1px solid var(--ann-line);
    border-radius: 9px;

    color: var(--ann-muted);
    background: #fff;

    font-size: 11px;
    font-weight: 650;

    text-decoration: none;

    transition:
        color var(--ann-transition),
        border-color var(--ann-transition),
        background var(--ann-transition),
        transform var(--ann-transition);
}

.ann-download:hover {
    color: var(--ann-blue);

    border-color: var(--ann-blue-line);

    background: var(--ann-blue-soft);

    transform: translateY(-1px);
}


/* ============================================================
   LOADING AREA
============================================================ */

.ann-loading {
    position: absolute;

    inset: 0;

    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 300px;

    background: rgba(255, 255, 255, 0.70);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    border-radius: 0;

    pointer-events: all;
}


/* ============================================================
   LOADING CARD
============================================================ */

.ann-loading__box {
    display: flex;
    align-items: center;

    gap: 14px;

    min-width: 270px;

    padding: 15px 20px;

    border: 1px solid rgba(29, 67, 254, 0.10);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 12px 35px rgba(23, 33, 58, 0.10),
        0 2px 8px rgba(23, 33, 58, 0.05);

    animation:
        annLoadingIn 180ms ease-out;
}


/* ============================================================
   LOADING SPINNER
============================================================ */

.ann-loading__spinner {
    position: relative;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border: 3px solid rgba(29, 67, 254, 0.12);
    border-top-color: var(--ann-blue);

    border-radius: 50%;

    animation:
        annSpin 0.7s linear infinite;
}

.ann-loading__spinner span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 5px;
    height: 5px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: var(--ann-blue);
}


/* ============================================================
   LOADING CONTENT
============================================================ */

.ann-loading__content {
    display: flex;
    flex-direction: column;

    gap: 3px;

    line-height: 1.3;
}

.ann-loading__content strong {
    color: var(--ann-ink);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.35;
}

.ann-loading__content span {
    color: var(--ann-subtle);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.35;
}


/* ============================================================
   LOADING ANIMATION
============================================================ */

@keyframes annSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes annLoadingIn {
    from {
        opacity: 0;

        transform:
            translateY(5px)
            scale(0.98);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* ============================================================
   EMPTY STATE
============================================================ */

.ann-empty {
    padding: 70px 25px;

    text-align: center;
}

.ann-empty__icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 17px;

    border: 1px solid var(--ann-line);
    border-radius: 17px;

    color: var(--ann-subtle);
    background: var(--ann-gray-bg);
}

.ann-empty h3 {
    margin: 0 0 6px;

    color: var(--ann-ink);

    font-size: 15px;
    font-weight: 700;
}

.ann-empty p {
    margin: 0 0 17px;

    color: var(--ann-muted);

    font-size: 12.5px;
}

.ann-empty__btn {
    height: 36px;

    padding: 0 14px;

    border: 1px solid var(--ann-line-dark);
    border-radius: 9px;

    color: var(--ann-ink-soft);
    background: #fff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 650;

    cursor: pointer;

    transition:
        color var(--ann-transition),
        border-color var(--ann-transition),
        background var(--ann-transition);
}

.ann-empty__btn:hover {
    color: var(--ann-blue);

    border-color: var(--ann-blue-line);

    background: var(--ann-blue-soft);
}


/* ============================================================
   PAGINATION
============================================================ */

.ann-pagination {
    min-height: 62px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 15px;

    padding: 10px 18px;

    border-top: 1px solid var(--ann-line);

    background: #fbfcfd;
}

.ann-pagination__left {
    justify-self: start;
}

.ann-pagination__center {
    display: flex;
    align-items: center;

    gap: 5px;

    color: var(--ann-subtle);

    font-size: 11.5px;
}

.ann-pagination__center strong {
    min-width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 6px;

    border-radius: 7px;

    color: var(--ann-ink);
    background: #fff;

    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.05);
}

.ann-pagination__right {
    justify-self: end;
}

.ann-page-btn {
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 11px;

    border: 1px solid var(--ann-line);
    border-radius: 9px;

    color: var(--ann-ink-soft);
    background: #fff;

    font-size: 11.5px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color var(--ann-transition),
        border-color var(--ann-transition),
        background var(--ann-transition);
}

.ann-page-btn:hover {
    color: var(--ann-blue);

    border-color: var(--ann-blue-line);

    background: var(--ann-blue-soft);
}

.ann-page-btn--disabled {
    opacity: 0.45;

    pointer-events: none;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

    .ann-filter__body {
        grid-template-columns:
            1fr
            1fr
            1fr;
    }

    .ann-field--keyword {
        grid-column: span 2;
    }

    .ann-filter__actions {
        grid-column: span 1;
    }
}


/* ============================================================
   TABLET / SMALL
============================================================ */

@media (max-width: 768px) {

    .ann-page {
        padding: 38px 0 55px;
    }

    .ann-hero {
        margin-bottom: 22px;
    }

    .ann-hero__mark {
        width: 56px;
        height: 56px;
    }

    .ann-filter__body {
        grid-template-columns:
            1fr
            1fr;
    }

    .ann-field--keyword {
        grid-column: 1 / -1;
    }

    .ann-filter__actions {
        grid-column: 1 / -1;
    }

    .ann-search-btn {
        flex: 1;
    }

    .ann-results__header {
        padding: 12px 15px;
    }

    .ann-loading {
        min-height: 280px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 576px) {

    .ann-page {
        padding: 30px 0 45px;
    }

    .ann-hero {
        align-items: flex-start;

        gap: 15px;
    }

    .ann-title,
    .ann-hero .title {
        font-size: 27px;
    }

    .ann-desc {
        font-size: 12.5px;
    }

    .ann-hero__mark {
        display: none;
    }


    /* FILTER */

    .ann-filter {
        border-radius: 15px;
    }

    .ann-filter__top {
        padding: 13px 14px;
    }

    .ann-filter__hint {
        display: none;
    }

    .ann-filter__body {
        grid-template-columns: 1fr;

        padding: 15px 14px;
    }

    .ann-field--keyword,
    .ann-filter__actions {
        grid-column: auto;
    }

    .ann-filter__actions {
        display: grid;

        grid-template-columns:
            1fr
            42px;
    }

    .ann-tags {
        padding: 0 14px 13px;
    }


    /* RESULTS */

    .ann-results {
        border-radius: 15px;
    }

    .ann-results__header {
        align-items: flex-start;

        padding: 13px;
    }

    .ann-results__status {
        display: none;
    }

    .ann-results__title span {
        max-width: 210px;
    }


    /* TABLE */

    .ann-table {
        min-width: 950px;
    }


    /* LOADING */

    .ann-loading {
        min-height: 240px;
    }

    .ann-loading__box {
        min-width: 230px;

        gap: 11px;

        padding: 13px 15px;
    }

    .ann-loading__spinner {
        width: 30px;
        height: 30px;

        flex-basis: 30px;
    }

    .ann-loading__content strong {
        font-size: 13px;
    }

    .ann-loading__content span {
        font-size: 11px;
    }


    /* PAGINATION */

    .ann-pagination {
        grid-template-columns:
            1fr
            1fr;

        padding: 10px 12px;
    }

    .ann-pagination__center {
        grid-column: 1 / -1;
        grid-row: 1;

        justify-self: center;
    }

    .ann-pagination__left {
        grid-column: 1;
        grid-row: 2;
    }

    .ann-pagination__right {
        grid-column: 2;
        grid-row: 2;
    }

    .ann-page-btn {
        width: 100%;
    }
}


/* ============================================================
   VERY SMALL
============================================================ */

@media (max-width: 380px) {

    .ann-title,
    .ann-hero .title {
        font-size: 24px;
    }

    .ann-filter__title strong {
        font-size: 12px;
    }

    .ann-filter__title small {
        font-size: 10px;
    }

    .ann-pagination {
        gap: 8px;
    }

    .ann-page-btn {
        padding: 0 8px;

        font-size: 10.5px;
    }
}
