/* TenderInfo thematic categories — 2026 */
.ti-cat-hero,
.ti-cat-detail-hero {
    margin: 0 0 28px;
    background:
        radial-gradient(circle at 92% 18%, rgba(255,255,255,.22), transparent 28%),
        linear-gradient(135deg, #173f62 0%, #245f87 58%, #2b7398 100%);
    color: #fff;
}

.ti-cat-hero__inner {
    min-height: 250px;
    padding: 42px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.ti-cat-hero__copy {
    max-width: 760px;
}

.ti-cat-eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    opacity: .78;
}

.ti-cat-hero h1,
.ti-cat-detail-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 34px;
    line-height: 1.17;
    font-weight: 700;
}

.ti-cat-hero p,
.ti-cat-detail-hero p {
    margin: 0;
    max-width: 820px;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.65;
}

.ti-cat-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.ti-cat-stats span {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    font-size: 13px;
}

.ti-cat-stats strong {
    color: #fff;
    font-size: 15px;
}

.ti-cat-searchbox {
    width: 370px;
    min-width: 320px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 15px;
    background: rgba(255,255,255,.11);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    backdrop-filter: blur(8px);
}

.ti-cat-searchbox label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 600;
}

.ti-cat-searchbox__field {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-radius: 9px;
    background: #fff;
}

.ti-cat-searchbox__field span {
    color: #648096;
    font-size: 24px;
    transform: rotate(-18deg);
}

.ti-cat-searchbox input {
    width: 100%;
    height: 46px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #253746;
    box-shadow: none;
}

.ti-cat-page {
    padding-bottom: 40px;
}

.ti-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.ti-cat-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #e3e9ee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(35, 58, 76, .055);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ti-cat-card:hover {
    border-color: #ccdce7;
    box-shadow: 0 12px 30px rgba(35, 58, 76, .09);
    transform: translateY(-2px);
}

.ti-cat-card__head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ti-cat-card__icon,
.ti-cat-detail-hero__icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: #eef6fb;
    color: #245f87;
    text-decoration: none;
    font-size: 24px;
    line-height: 1;
}

.ti-cat-card h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
}

.ti-cat-card h2 a {
    color: #173f62;
    text-decoration: none;
}

.ti-cat-card h2 a:hover {
    color: #1c6c9e;
}

.ti-cat-card__head p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #71808c;
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ti-cat-card__children {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 20px 0;
}

.ti-cat-card__children a {
    padding: 6px 9px;
    border: 1px solid #e0e8ee;
    border-radius: 7px;
    background: #f8fafb;
    color: #3f5667;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.25;
}

.ti-cat-card__children a:hover {
    border-color: #bfd4e2;
    background: #eef6fb;
    color: #185f8c;
}

.ti-cat-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid #edf1f4;
    color: #89959e;
    font-size: 12px;
}

.ti-cat-more {
    color: #176b9e;
    text-decoration: none;
    font-weight: 600;
}

.ti-cat-more span {
    margin-left: 4px;
}

.ti-cat-empty {
    margin: 25px 0;
    padding: 24px;
    border: 1px dashed #d4dfe6;
    border-radius: 12px;
    background: #fafcfd;
    color: #667784;
    text-align: center;
}

/* Detail */
.ti-cat-detail-hero__inner {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 190px;
    padding: 34px 0;
}

.ti-cat-detail-hero__icon {
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 32px;
}

.ti-cat-detail-hero__copy {
    max-width: 900px;
}

.ti-cat-related {
    margin-top: 6px;
    margin-bottom: 28px;
}

.ti-cat-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.ti-cat-section-title h2 {
    margin: 0;
    color: #273f52;
    font-size: 20px;
}

.ti-cat-section-title > a {
    color: #176b9e;
    font-size: 13px;
}

.ti-cat-chip-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.ti-cat-chip-grid > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    padding: 12px 13px;
    border: 1px solid #e1e8ed;
    border-radius: 9px;
    background: #fff;
    color: #3b5263;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(35, 58, 76, .035);
}

.ti-cat-chip-grid > a:hover {
    border-color: #bad1e0;
    background: #f6fbfe;
    color: #176b9e;
}

.ti-cat-chip-grid > a.is-current {
    border-color: #9ec4dc;
    background: #eef7fc;
    color: #155f8d;
    font-weight: 600;
}

.ti-cat-chip-grid span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.ti-cat-chip-grid b {
    color: #90a3af;
    font-weight: 400;
}

.ti-cat-resultsbar {
    margin-top: 10px;
}

.ti-cat-results {
    padding-top: 18px;
    padding-bottom: 20px;
}

.ti-cat-seo-copy {
    padding-top: 10px;
    padding-bottom: 38px;
}

.ti-cat-seo-copy > div {
    padding: 22px 24px;
    border: 1px solid #e5eaee;
    border-radius: 12px;
    background: #fafcfd;
}

.ti-cat-seo-copy h2 {
    margin: 0 0 9px;
    color: #344b5d;
    font-size: 18px;
}

.ti-cat-seo-copy p {
    margin: 0;
    color: #6f7e89;
    line-height: 1.65;
}

@media (max-width: 1199px) {
    .ti-cat-chip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .ti-cat-hero__inner {
        display: block;
    }

    .ti-cat-searchbox {
        width: 100%;
        min-width: 0;
        margin-top: 26px;
    }

    .ti-cat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .ti-cat-hero__inner,
    .ti-cat-detail-hero__inner {
        padding: 28px 0;
    }

    .ti-cat-hero h1,
    .ti-cat-detail-hero h1 {
        font-size: 26px;
    }

    .ti-cat-detail-hero__inner {
        align-items: flex-start;
    }

    .ti-cat-detail-hero__icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .ti-cat-card {
        padding: 18px;
    }

    .ti-cat-chip-grid {
        grid-template-columns: 1fr;
    }

    .ti-cat-section-title {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .ti-cat-card__head {
        gap: 12px;
    }

    .ti-cat-card__icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .ti-cat-card__foot {
        align-items: flex-start;
        flex-direction: column;
    }
}
