/*
Theme Name: ZimContract V2
Theme URI: https://zimcontract.co.zw
Author: ZimContract
Author URI: https://zimcontract.co.zw
Description: Custom procurement-first WordPress theme for ZimContract.
Version: 1.0.0
Text Domain: zimcontract-v2
*/

/* ============================================
   CSS RESET
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: #172033;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

/* ============================================
   DESIGN VARIABLES
   ============================================ */

:root {
    --zc-navy: #102a43;
    --zc-dark-navy: #071c2c;
    --zc-blue: #1f5f99;
    --zc-light-blue: #eaf3fa;
    --zc-gold: #d9a441;
    --zc-green: #1f7a4d;
    --zc-red: #c74747;

    --zc-white: #ffffff;
    --zc-background: #f6f8fb;
    --zc-border: #dfe6ee;
    --zc-text: #172033;
    --zc-muted: #687386;

    --zc-container: 1240px;
    --zc-radius-sm: 6px;
    --zc-radius-md: 10px;
    --zc-radius-lg: 16px;

    --zc-shadow-sm: 0 4px 14px rgba(16, 42, 67, 0.06);
    --zc-shadow-md: 0 12px 35px rgba(16, 42, 67, 0.1);
}

/* ============================================
   GLOBAL LAYOUT
   ============================================ */

.zc-container {
    width: min(100% - 40px, var(--zc-container));
    margin-inline: auto;
}

.zc-section {
    padding: 80px 0;
}

.zc-section-light {
    background: var(--zc-background);
}

.zc-section-heading {
    margin-bottom: 34px;
}

.zc-section-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--zc-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.zc-section-heading h2 {
    margin-bottom: 10px;
    color: var(--zc-navy);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.zc-section-heading p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--zc-muted);
}

/* ============================================
   BUTTONS
   ============================================ */

.zc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: var(--zc-radius-sm);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.zc-button:hover {
    transform: translateY(-1px);
}

.zc-button-primary {
    background: var(--zc-gold);
    color: var(--zc-dark-navy);
}

.zc-button-primary:hover {
    background: #c99435;
    color: var(--zc-dark-navy);
}

.zc-button-secondary {
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
    color: var(--zc-white);
}

.zc-button-secondary:hover {
    border-color: var(--zc-white);
    background: var(--zc-white);
    color: var(--zc-navy);
}

.zc-button-outline {
    border-color: var(--zc-navy);
    background: transparent;
    color: var(--zc-navy);
}

.zc-button-outline:hover {
    background: var(--zc-navy);
    color: var(--zc-white);
}

/* ============================================
   WORDPRESS CORE
   ============================================ */

.alignwide {
    width: min(100% - 40px, 1400px);
    margin-inline: auto;
}

.alignfull {
    width: 100%;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    position: fixed !important;
    top: 10px;
    left: 10px;
    z-index: 99999;
    width: auto;
    height: auto;
    padding: 12px 18px;
    background: var(--zc-white);
    color: var(--zc-navy);
    clip: auto;
}

/* ============================================
   BASIC CONTENT
   ============================================ */

.zc-page-content {
    min-height: 60vh;
    padding: 70px 0;
}

.zc-page-content h1,
.zc-page-content h2,
.zc-page-content h3 {
    color: var(--zc-navy);
}

.zc-page-content a {
    color: var(--zc-blue);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .zc-section {
        padding: 65px 0;
    }
}

@media (max-width: 767px) {
    .zc-container {
        width: min(100% - 28px, var(--zc-container));
    }

    .zc-section {
        padding: 52px 0;
    }

    .zc-section-heading {
        margin-bottom: 26px;
    }

    .zc-button {
        min-height: 46px;
        padding: 12px 18px;
    }
}

/* ============================================
   SITE HEADER
   ============================================ */

.zc-site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e3e8ed;
}

.zc-header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.zc-site-branding {
    flex: 0 0 auto;
}

.zc-site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.zc-site-logo img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 48px;
    object-fit: contain;
}

.zc-logo-mark {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--zc-navy);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.zc-logo-text {
    color: var(--zc-navy);
    font-size: 20px;
    font-weight: 800;
}

.zc-header-navigation {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
}

.zc-primary-navigation {
    display: flex;
    align-items: center;
}

.zc-primary-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.zc-primary-menu li {
    position: relative;
    margin: 0;
}

.zc-primary-menu a {
    display: inline-flex;
    min-height: 78px;
    align-items: center;
    color: #17314f;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.zc-primary-menu > li > a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #31a84a;
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.zc-primary-menu > li:hover > a::after,
.zc-primary-menu > .current-menu-item > a::after,
.zc-primary-menu > .current-menu-ancestor > a::after {
    opacity: 1;
    transform: scaleX(1);
}

.zc-primary-menu a:hover,
.zc-primary-menu .current-menu-item > a,
.zc-primary-menu .current-menu-ancestor > a {
    color: #2f9f49;
}

/* Dropdowns */

.zc-primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    z-index: 20;
    min-width: 220px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid #e1e7ed;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(7, 34, 65, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.zc-primary-menu li:hover > .sub-menu,
.zc-primary-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.zc-primary-menu .sub-menu a {
    min-height: 0;
    padding: 11px 12px;
    border-radius: 5px;
    color: #17314f;
    font-size: 13px;
}

.zc-primary-menu .sub-menu a:hover {
    background: #f2f7f3;
    color: #2f9f49;
}

/* Header actions */

.zc-header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
}

.zc-header-login,
.zc-header-publish {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.zc-header-login {
    padding: 10px 20px;
    border: 1px solid #153453;
    color: #153453;
    background: #ffffff;
}

.zc-header-login:hover {
    border-color: #2f9f49;
    color: #2f9f49;
}

.zc-header-publish {
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #31a84a;
    background: #31a84a;
    color: #ffffff;
}

.zc-header-publish:hover {
    border-color: #298f3f;
    background: #298f3f;
    color: #ffffff;
}

.zc-header-publish svg {
    width: 17px;
    height: 17px;
}

/* Mobile toggle */

.zc-mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid #dbe2e8;
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
}

.zc-mobile-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--zc-navy);
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

/* ============================================
   HEADER RESPONSIVE
   ============================================ */

@media (max-width: 1050px) {
    .zc-header-inner {
        gap: 20px;
    }

    .zc-header-navigation {
        gap: 20px;
    }

    .zc-primary-menu {
        gap: 20px;
    }

    .zc-primary-menu a {
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .zc-header-inner {
        position: relative;
        min-height: 70px;
    }

    .zc-site-logo img {
        max-width: 165px;
        max-height: 42px;
    }

    .zc-mobile-menu-toggle {
        display: block;
    }

    .zc-header-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 70px);
        padding: 18px 20px 22px;
        overflow-y: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        background: #ffffff;
        border-top: 1px solid #e3e8ed;
        box-shadow: 0 18px 30px rgba(7, 34, 65, 0.12);
    }

    .zc-header-navigation.is-open {
        display: flex;
    }

    .zc-primary-navigation {
        display: block;
    }

    .zc-primary-menu {
        display: block;
    }

    .zc-primary-menu li {
        width: 100%;
        border-bottom: 1px solid #edf0f3;
    }

    .zc-primary-menu a {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
    }

    .zc-primary-menu > li > a::after {
        display: none;
    }

    .zc-primary-menu .sub-menu {
        position: static;
        display: none;
        min-width: 0;
        padding: 0 0 10px 14px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .zc-primary-menu li:hover > .sub-menu,
    .zc-primary-menu li:focus-within > .sub-menu {
        display: block;
    }

    .zc-primary-menu .sub-menu li {
        border-bottom: 0;
    }

    .zc-primary-menu .sub-menu a {
        min-height: 40px;
    }

    .zc-header-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .zc-header-login,
    .zc-header-publish {
        width: 100%;
    }

    .zc-mobile-menu-toggle.is-active span:nth-of-type(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .zc-mobile-menu-toggle.is-active span:nth-of-type(3) {
        opacity: 0;
    }

    .zc-mobile-menu-toggle.is-active span:nth-of-type(4) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 520px) {
    .zc-header-actions {
        grid-template-columns: 1fr;
    }

    .zc-site-logo img {
        max-width: 145px;
    }
}

/* ============================================
   GENERAL ENTRY STYLES
   ============================================ */

.zc-content-entry {
    max-width: 900px;
}

.zc-entry-header {
    margin-bottom: 28px;
}

.zc-entry-title {
    margin-bottom: 0;
    color: var(--zc-navy);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.1;
}

.zc-entry-content > *:last-child {
    margin-bottom: 0;
}

.zc-entry-content ul,
.zc-entry-content ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.zc-empty-state {
    max-width: 640px;
    padding: 50px;
    background: var(--zc-background);
    border: 1px solid var(--zc-border);
    border-radius: var(--zc-radius-lg);
}

/* ============================================
   SITE FOOTER
   ============================================ */

.zc-site-footer {
    position: relative;
    padding: 54px 0 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(48, 168, 74, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061d39 0%,
            #082a50 60%,
            #073c48 100%
        );
    color: rgba(255, 255, 255, 0.78);
}

.zc-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.7fr) repeat(3, minmax(150px, 1fr));
    gap: 55px;
    padding-bottom: 45px;
}

.zc-footer-brand {
    max-width: 350px;
}

.zc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.zc-footer-logo img {
    display: block;
    width: auto;
    max-width: 185px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.zc-footer-logo-mark {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #31a84a;
    color: #ffffff;
    font-weight: 800;
}

.zc-footer-logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.zc-footer-brand > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.75;
}

.zc-footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
}

.zc-footer-socials a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.zc-footer-socials a:hover {
    transform: translateY(-2px);
    border-color: #31a84a;
    background: #31a84a;
    color: #ffffff;
}

.zc-footer-socials svg {
    width: 17px;
    height: 17px;
}

.zc-footer-column h2 {
    margin: 5px 0 19px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.zc-footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.zc-footer-column li {
    margin-bottom: 12px;
}

.zc-footer-column a {
    color: rgba(255, 255, 255, 0.69);
    font-size: 12px;
    line-height: 1.5;
}

.zc-footer-column a:hover {
    color: #52c469;
}

.zc-footer-bottom {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.zc-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

/* ============================================
   FOOTER RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .zc-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px;
    }

    .zc-footer-brand {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .zc-site-footer {
        padding-top: 42px;
    }

    .zc-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 34px 20px;
    }

    .zc-footer-brand {
        grid-column: 1 / -1;
    }

    .zc-footer-column:last-child {
        grid-column: 1 / -1;
    }

    .zc-footer-bottom {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
    }
}

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

@media (max-width: 1180px) {
    .zc-header-inner {
        gap: 20px;
    }

    .zc-primary-menu {
        gap: 18px;
    }

    .zc-primary-menu > li > a {
        font-size: 13px;
    }

    .zc-header-actions .zc-button-outline {
        display: none;
    }
}

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

@media (max-width: 991px) {
    body.zc-menu-open {
        overflow: hidden;
    }

    .zc-header-top {
        display: none;
    }

    .zc-header-inner {
        position: relative;
        min-height: 72px;
        justify-content: space-between;
        gap: 16px;
    }

    .zc-site-branding .custom-logo {
        max-width: 185px;
        max-height: 48px;
    }

    .zc-menu-toggle {
        display: block;
        order: 3;
    }

    .zc-menu-toggle[aria-expanded="true"] .zc-menu-toggle-line:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .zc-menu-toggle[aria-expanded="true"] .zc-menu-toggle-line:nth-child(3) {
        opacity: 0;
    }

    .zc-menu-toggle[aria-expanded="true"] .zc-menu-toggle-line:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .zc-primary-navigation {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        padding: 18px 20px 110px;
        overflow-y: auto;
        background: var(--zc-white);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition:
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.2s ease;
    }

    .zc-primary-navigation.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .zc-primary-menu {
        display: block;
    }

    .zc-primary-menu > li {
        border-bottom: 1px solid var(--zc-border);
    }

    .zc-primary-menu > li > a {
        width: 100%;
        min-height: 58px;
        justify-content: space-between;
        font-size: 15px;
    }

    .zc-primary-menu > li > a::after {
        display: none;
    }

    .zc-primary-menu .sub-menu {
        position: static;
        display: block;
        min-width: 0;
        padding: 0 0 12px 16px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .zc-primary-menu .sub-menu a {
        padding: 9px 0;
    }

    .zc-header-actions {
        position: fixed;
        right: 20px;
        bottom: 20px;
        left: 20px;
        z-index: 1001;
        display: none;
    }

    body.zc-menu-open .zc-header-actions {
        display: flex;
    }

    .zc-header-actions .zc-button {
        flex: 1;
    }

    .zc-header-actions .zc-button-outline {
        display: inline-flex;
    }

    .zc-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px;
    }

    .zc-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .zc-site-branding .custom-logo {
        max-width: 160px;
    }

    .zc-footer-main {
        padding: 56px 0 44px;
    }

    .zc-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .zc-footer-brand {
        grid-column: auto;
    }

    .zc-footer-bottom-inner {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

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

.zc-home-hero {
    position: relative;
    min-height: 430px;
    padding: 54px 0 76px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(3, 27, 57, 0.98) 0%,
            rgba(4, 33, 69, 0.93) 42%,
            rgba(4, 31, 65, 0.66) 72%,
            rgba(4, 27, 57, 0.52) 100%
        ),
        url("assets/images/harare-city.jpg") center 58% / cover no-repeat;
    color: var(--zc-white);
}

.zc-home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 27, 57, 0.05),
            rgba(4, 27, 57, 0.2)
        );
    pointer-events: none;
}

.zc-home-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(340px, 0.88fr) minmax(560px, 1.12fr);
    align-items: center;
    gap: 54px;
}

.zc-home-hero-copy {
    max-width: 520px;
}

.zc-home-hero h1 {
    margin: 0 0 18px;
    color: var(--zc-white);
    font-size: clamp(54px, 5.2vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.zc-home-hero h1 span {
    color: #35aa4f;
}

.zc-home-hero-copy > p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
}

.zc-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.zc-home-hero-actions .zc-button {
    min-height: 48px;
    padding: 12px 20px;
    gap: 9px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
}

.zc-home-hero-actions svg {
    flex: 0 0 auto;
}

.zc-home-hero .zc-button-primary {
    background: #35aa4f;
    border-color: #35aa4f;
    color: var(--zc-white);
}

.zc-home-hero .zc-button-primary:hover {
    background: #2d9544;
    border-color: #2d9544;
    color: var(--zc-white);
}

.zc-button-hero-outline {
    background: rgba(5, 31, 64, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--zc-white);
    backdrop-filter: blur(5px);
}

.zc-button-hero-outline:hover {
    background: var(--zc-white);
    border-color: var(--zc-white);
    color: var(--zc-navy);
}

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

.zc-home-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.zc-hero-stat-card {
    display: flex;
    min-height: 190px;
    padding: 24px 16px 20px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: rgba(7, 39, 77, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.zc-hero-stat-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 12px;
    color: #35aa4f;
}

.zc-hero-stat-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.zc-hero-stat-card strong {
    margin-bottom: 8px;
    color: var(--zc-white);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.zc-hero-stat-card > span {
    max-width: 135px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

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

@media (max-width: 1180px) {
    .zc-home-hero-inner {
        grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
        gap: 36px;
    }

    .zc-home-hero-stats {
        gap: 10px;
    }

    .zc-hero-stat-card {
        min-height: 175px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .zc-hero-stat-card strong {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .zc-home-hero {
        padding: 64px 0 96px;
        background-position: center;
    }

    .zc-home-hero-inner {
        grid-template-columns: 1fr;
    }

    .zc-home-hero-copy {
        max-width: 680px;
    }

    .zc-home-hero-stats {
        max-width: 760px;
    }
}

@media (max-width: 700px) {
    .zc-home-hero {
        min-height: auto;
        padding: 54px 0 84px;
    }

    .zc-home-hero h1 {
        font-size: clamp(46px, 13vw, 62px);
    }

    .zc-home-hero-copy > p {
        font-size: 17px;
    }

    .zc-home-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zc-hero-stat-card {
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    .zc-home-hero-actions {
        flex-direction: column;
    }

    .zc-home-hero-actions .zc-button {
        width: 100%;
    }

    .zc-home-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .zc-hero-stat-card {
        min-height: 145px;
        padding: 18px 10px;
    }

    .zc-hero-stat-card strong {
        font-size: 27px;
    }

    .zc-hero-stat-card > span {
        font-size: 12px;
    }
}

/* ============================================
   HERO PROCUREMENT SNAPSHOT
   ============================================ */

.zc-home-hero-panel {
    position: relative;
}

.zc-procurement-snapshot {
    position: relative;
    padding: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    color: var(--zc-text);
}

.zc-procurement-snapshot::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--zc-gold),
        #efc96f,
        var(--zc-gold)
    );
}

.zc-procurement-snapshot-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--zc-border);
}

.zc-procurement-snapshot-header > div > span {
    display: block;
    margin-bottom: 6px;
    color: var(--zc-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.zc-procurement-snapshot-header h2 {
    max-width: 300px;
    margin-bottom: 0;
    color: var(--zc-navy);
    font-size: 26px;
    line-height: 1.2;
}

.zc-live-indicator {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 7px 11px;
    background: #eaf8f0;
    border: 1px solid #c9ead7;
    border-radius: 30px;
    color: var(--zc-green);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.zc-live-indicator::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--zc-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
}

.zc-procurement-snapshot-list {
    padding: 8px 0;
}

.zc-snapshot-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 20px 0;
}

.zc-snapshot-item + .zc-snapshot-item {
    border-top: 1px solid var(--zc-border);
}

.zc-snapshot-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--zc-light-blue);
    border: 1px solid #d2e5f4;
    border-radius: 12px;
    color: var(--zc-blue);
    font-size: 12px;
    font-weight: 800;
}

.zc-snapshot-item strong,
.zc-snapshot-item div > span {
    display: block;
}

.zc-snapshot-item strong {
    margin-bottom: 3px;
    color: var(--zc-navy);
    font-size: 15px;
}

.zc-snapshot-item div > span {
    color: var(--zc-muted);
    font-size: 13px;
    line-height: 1.5;
}

.zc-snapshot-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--zc-border);
    color: var(--zc-navy);
    font-size: 14px;
    font-weight: 700;
}

.zc-snapshot-link span {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.zc-snapshot-link:hover span {
    transform: translateX(4px);
}

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

@media (max-width: 1100px) {
    .zc-home-hero {
        padding: 82px 0;
    }

    .zc-home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
        gap: 46px;
    }

    .zc-home-hero h1 {
        font-size: clamp(46px, 6vw, 66px);
    }
}

@media (max-width: 900px) {
    .zc-home-hero-grid {
        grid-template-columns: 1fr;
    }

    .zc-home-hero-content {
        max-width: 760px;
    }

    .zc-home-hero-panel {
        max-width: 680px;
    }
}

@media (max-width: 640px) {
    .zc-home-hero {
        padding: 64px 0;
    }

    .zc-home-hero h1 {
        margin-bottom: 20px;
        font-size: clamp(42px, 13vw, 58px);
        line-height: 1;
    }

    .zc-home-hero-lead {
        margin-bottom: 28px;
        font-size: 17px;
    }

    .zc-home-hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-bottom: 34px;
    }

    .zc-home-hero-actions .zc-button {
        width: 100%;
    }

    .zc-home-hero-trust {
        grid-template-columns: 1fr;
    }

    .zc-home-hero-trust-item {
        padding: 16px 0;
    }

    .zc-home-hero-trust-item + .zc-home-hero-trust-item {
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .zc-procurement-snapshot {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .zc-procurement-snapshot-header {
        gap: 16px;
    }

    .zc-procurement-snapshot-header h2 {
        font-size: 22px;
    }

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

    .zc-snapshot-icon {
        width: 42px;
        height: 42px;
    }
}

/* ============================================
   FULL-WIDTH OPPORTUNITY TABLE
   ============================================ */

.zc-opportunity-table {
    border-top: 1px solid #dce4ed;
}

.zc-opportunity-table-head,
.zc-dashboard-opportunity {
    display: grid;
    grid-template-columns:
        minmax(250px, 2.2fr)
        minmax(130px, 1fr)
        minmax(155px, 1.2fr)
        minmax(110px, 0.8fr)
        minmax(120px, 0.9fr)
        minmax(90px, 0.7fr);
    align-items: center;
}

.zc-opportunity-table-head {
    min-height: 46px;
    padding: 0 20px;
    background: var(--zc-navy);
}

.zc-opportunity-table-head span {
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.zc-dashboard-opportunity {
    min-height: 70px;
    padding: 0 20px;
    border-bottom: 1px solid #e3e9ef;
    transition: background-color 0.2s ease;
}

.zc-dashboard-opportunity:hover {
    background: #fbfcfe;
}

.zc-dashboard-opportunity:last-child {
    border-bottom: 0;
}

.zc-dashboard-opportunity > div {
    min-width: 0;
    padding: 12px 10px;
    color: var(--zc-text);
    font-size: 12px;
    line-height: 1.45;
}

.zc-dashboard-opportunity-title {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
}

.zc-dashboard-opportunity h3 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.zc-dashboard-opportunity h3 a {
    color: var(--zc-navy);
}

.zc-dashboard-opportunity h3 a:hover {
    color: #2f9f49;
}

.zc-dashboard-document-icon {
    display: inline-flex;
    width: 21px;
    height: 21px;
    color: #31a84a;
}

.zc-dashboard-document-icon svg {
    width: 100%;
    height: 100%;
}

.zc-dashboard-category,
.zc-dashboard-organisation {
    overflow: hidden;
    text-overflow: ellipsis;
}

.zc-dashboard-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.zc-dashboard-location svg {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    color: var(--zc-navy);
}

.zc-dashboard-location span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zc-dashboard-closing-date {
    color: var(--zc-muted);
    white-space: nowrap;
}

.zc-dashboard-time-left {
    font-weight: 700;
    white-space: nowrap;
}

.zc-dashboard-time-left.is-open {
    color: #2d9b47;
}

.zc-dashboard-time-left.is-warning {
    color: #c78415;
}

.zc-dashboard-time-left.is-urgent,
.zc-dashboard-time-left.is-closed {
    color: #dd3f3f;
}

/* ============================================
   OPPORTUNITY TABLE RESPONSIVE
   ============================================ */

@media (max-width: 1000px) {
    .zc-opportunity-table {
        overflow-x: auto;
    }

    .zc-opportunity-table-head,
    .zc-dashboard-opportunity {
        min-width: 980px;
    }
}

@media (max-width: 700px) {
    .zc-opportunity-table {
        overflow: visible;
        border-top: 0;
    }

    .zc-opportunity-table-head {
        display: none;
    }

    .zc-opportunity-table-body {
        padding: 12px;
    }

    .zc-dashboard-opportunity {
        display: block;
        min-width: 0;
        min-height: 0;
        padding: 15px;
        margin-bottom: 12px;
        border: 1px solid #e1e7ed;
        border-radius: 8px;
    }

    .zc-dashboard-opportunity:last-child {
        border-bottom: 1px solid #e1e7ed;
    }

    .zc-dashboard-opportunity > div {
        display: grid;
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 12px;
        padding: 7px 0;
        font-size: 12px;
    }

    .zc-dashboard-opportunity > div::before {
        content: attr(data-label);
        color: var(--zc-muted);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .zc-dashboard-opportunity-title {
        display: grid !important;
        grid-template-columns: 24px minmax(0, 1fr) !important;
        padding-bottom: 13px !important;
        margin-bottom: 6px;
        border-bottom: 1px solid #e1e7ed;
    }

    .zc-dashboard-opportunity-title::before {
        display: none;
    }

    .zc-dashboard-opportunity h3 {
        font-size: 13px;
    }

    .zc-dashboard-location {
        display: grid !important;
        grid-template-columns: 110px minmax(0, 1fr) !important;
    }

    .zc-dashboard-location svg {
        display: none;
    }
}

/* ============================================
   PROCUREMENT CATEGORIES
   ============================================ */

.zc-home-categories {
    padding: 8px 0 50px;
    background: var(--zc-white);
}

.zc-home-section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.zc-home-section-heading-row > div > span {
    display: block;
    margin-bottom: 7px;
    color: #2f9f49;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.zc-home-section-heading-row h2 {
    margin: 0;
    color: var(--zc-navy);
    font-size: 28px;
    line-height: 1.2;
}

.zc-home-section-heading-row > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--zc-navy);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.zc-home-section-heading-row > a span {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.zc-home-section-heading-row > a:hover span {
    transform: translateX(3px);
}

.zc-category-strip {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
}

.zc-category-tile {
    display: flex;
    min-height: 124px;
    padding: 20px 12px 16px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    border: 1px solid #dfe6ed;
    border-radius: 9px;
    background: #fff;
    text-align: center;
    box-shadow: 0 7px 20px rgba(7, 34, 65, 0.045);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.zc-category-tile:hover {
    transform: translateY(-3px);
    border-color: #33a64c;
    box-shadow: 0 12px 26px rgba(7, 34, 65, 0.09);
}

.zc-category-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    color: #2f9f49;
}

.zc-category-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.zc-category-tile strong {
    color: var(--zc-navy);
    font-size: 13px;
    line-height: 1.35;
}

/* ============================================
   CATEGORY RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
    .zc-category-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .zc-home-categories {
        padding-bottom: 40px;
    }

    .zc-home-section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .zc-home-section-heading-row h2 {
        font-size: 24px;
    }

    .zc-category-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .zc-category-tile {
        min-height: 112px;
    }
}

/* ============================================
   FEATURED SUPPLIERS
   ============================================ */

.zc-home-suppliers {
    padding: 46px 0 62px;
    background: #f6f8fb;
    border-top: 1px solid #e4e9ef;
}

.zc-supplier-strip {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
}

.zc-supplier-logo-card {
    min-width: 0;
}

.zc-supplier-logo-link {
    display: flex;
    min-height: 150px;
    padding: 16px 12px 14px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background: var(--zc-white);
    border: 1px solid #dfe6ed;
    border-radius: 9px;
    text-align: center;
    box-shadow: 0 7px 22px rgba(7, 34, 65, 0.045);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.zc-supplier-logo-link:hover {
    transform: translateY(-3px);
    border-color: #31a84a;
    box-shadow: 0 12px 28px rgba(7, 34, 65, 0.09);
}

.zc-supplier-logo-frame {
    display: flex;
    width: 100%;
    height: 58px;
    align-items: center;
    justify-content: center;
}

.zc-supplier-logo-frame img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    filter: saturate(0.96) contrast(1.05);
}

.zc-supplier-logo-fallback {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf5ed;
    color: #2f9f49;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.zc-supplier-logo-details {
    width: 100%;
    min-width: 0;
}

.zc-supplier-logo-details h3 {
    overflow: hidden;
    margin: 0;
    color: var(--zc-navy);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zc-supplier-logo-details p {
    overflow: hidden;
    margin: 5px 0 0;
    color: var(--zc-muted);
    font-size: 10px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zc-supplier-strip-footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.zc-supplier-strip-footer .zc-button {
    min-height: 44px;
    padding: 11px 20px;
    font-size: 13px;
}

.zc-suppliers-empty {
    padding: 48px 24px;
    background: var(--zc-white);
    border: 1px solid #dfe6ed;
    border-radius: 9px;
    text-align: center;
}

.zc-suppliers-empty h3 {
    margin: 0 0 8px;
    color: var(--zc-navy);
}

.zc-suppliers-empty p {
    margin: 0;
    color: var(--zc-muted);
}

/* ============================================
   SUPPLIER RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
    .zc-supplier-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .zc-home-suppliers {
        padding: 40px 0 50px;
    }

    .zc-supplier-strip {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .zc-supplier-logo-card {
        flex: 0 0 155px;
        scroll-snap-align: start;
    }

    .zc-supplier-logo-link {
        min-height: 140px;
    }
}

/* ============================================
   FINAL HOMEPAGE CTA
   ============================================ */

.zc-final-cta {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    background:
        linear-gradient(
            135deg,
            var(--zc-dark-navy) 0%,
            var(--zc-navy) 70%,
            #183f64 100%
        );
    color: var(--zc-white);
}

.zc-final-cta::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -100px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.zc-final-cta::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -130px;
    width: 360px;
    height: 360px;
    background: rgba(217, 164, 65, 0.06);
    border-radius: 50%;
}

.zc-final-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 70px;
}

.zc-final-cta-content {
    max-width: 820px;
}

.zc-final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #f1c96d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.zc-final-cta-eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--zc-gold);
}

.zc-final-cta h2 {
    max-width: 820px;
    margin-bottom: 18px;
    color: var(--zc-white);
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.zc-final-cta p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.75;
}

.zc-final-cta-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
}

.zc-final-cta-actions .zc-button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
}

.zc-button-gold {
    background: var(--zc-gold);
    border: 1px solid var(--zc-gold);
    color: var(--zc-dark-navy);
}

.zc-button-gold:hover {
    background: #e7b74e;
    border-color: #e7b74e;
    color: var(--zc-dark-navy);
    transform: translateY(-1px);
}

.zc-button-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--zc-white);
}

.zc-button-light:hover {
    background: var(--zc-white);
    border-color: var(--zc-white);
    color: var(--zc-navy);
}

/* ============================================
   FINAL CTA RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .zc-final-cta {
        padding: 70px 0;
    }

    .zc-final-cta-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .zc-final-cta-actions {
        max-width: 440px;
    }
}

@media (max-width: 560px) {
    .zc-final-cta {
        padding: 58px 0;
    }

    .zc-final-cta h2 {
        font-size: 36px;
    }

    .zc-final-cta p {
        font-size: 16px;
    }
}

/* ============================================
   HOMEPAGE STRUCTURE
   ============================================ */

.zc-homepage {
    width: 100%;
    overflow: hidden;
}

.zc-home-dashboard {
    position: relative;
    z-index: 5;
    background: var(--zc-white);
}

.zc-home-dashboard .zc-home-opportunities {
    position: relative;
    z-index: 3;
}

.zc-home-dashboard .zc-home-categories {
    position: relative;
    z-index: 2;
}

.zc-home-dashboard .zc-home-suppliers {
    position: relative;
    z-index: 1;
}

/* ============================================
   OPPORTUNITIES ARCHIVE
   ============================================ */

.zc-opportunities-archive {
    background: #f5f7fa;
}

.zc-archive-hero {
    padding: 64px 0 90px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(49, 168, 74, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061d39 0%,
            #082c55 72%,
            #07434b 100%
        );
    color: #fff;
}

.zc-archive-hero-content {
    max-width: 720px;
}

.zc-archive-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #58ca70;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.zc-archive-hero h1 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.zc-archive-hero p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.7;
}

.zc-opportunity-archive-content {
    padding: 0 0 72px;
}

.zc-opportunity-filter-card {
    position: relative;
    z-index: 4;
    padding: 25px;
    margin-top: -42px;
    background: #fff;
    border: 1px solid #dfe6ed;
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(7, 34, 65, 0.1);
}

.zc-opportunity-filter-form {
    display: grid;
    grid-template-columns:
        minmax(270px, 1.6fr)
        minmax(180px, 0.9fr)
        minmax(170px, 0.8fr)
        auto;
    align-items: end;
    gap: 16px;
}

.zc-filter-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--zc-navy);
    font-size: 11px;
    font-weight: 700;
}

.zc-filter-field input,
.zc-filter-field select {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid #d5dde5;
    border-radius: 6px;
    background: #fff;
    color: var(--zc-text);
    font: inherit;
    font-size: 13px;
    outline: none;
}

.zc-filter-field input:focus,
.zc-filter-field select:focus {
    border-color: #31a84a;
    box-shadow: 0 0 0 3px rgba(49, 168, 74, 0.11);
}

.zc-filter-input-wrap {
    position: relative;
}

.zc-filter-input-wrap svg {
    position: absolute;
    top: 50%;
    left: 13px;
    width: 18px;
    height: 18px;
    color: #8190a1;
    transform: translateY(-50%);
}

.zc-filter-input-wrap input {
    padding-left: 41px;
}

.zc-filter-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zc-filter-submit {
    min-height: 46px;
    padding: 10px 20px;
    border: 1px solid #31a84a;
    border-radius: 6px;
    background: #31a84a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.zc-filter-submit:hover {
    border-color: #298f3f;
    background: #298f3f;
}

.zc-filter-reset {
    color: var(--zc-muted);
    font-size: 12px;
    font-weight: 700;
}

.zc-opportunity-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 48px 0 22px;
}

.zc-opportunity-results-header h2 {
    margin: 0 0 5px;
    color: var(--zc-navy);
    font-size: 27px;
}

.zc-opportunity-results-header p {
    margin: 0;
    color: var(--zc-muted);
    font-size: 13px;
}

.zc-archive-opportunity-list {
    display: grid;
    gap: 13px;
}

.zc-archive-opportunity-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 23px 24px;
    background: #fff;
    border: 1px solid #dfe6ed;
    border-radius: 9px;
    box-shadow: 0 6px 20px rgba(7, 34, 65, 0.035);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.zc-archive-opportunity-card:hover {
    transform: translateY(-2px);
    border-color: #b9c9d8;
    box-shadow: 0 12px 28px rgba(7, 34, 65, 0.075);
}

.zc-archive-opportunity-icon {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eaf6ed;
    color: #31a84a;
}

.zc-archive-opportunity-icon svg {
    width: 25px;
    height: 25px;
}

.zc-archive-opportunity-main {
    min-width: 0;
}

.zc-archive-opportunity-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.zc-opportunity-category-badge,
.zc-opportunity-status {
    display: inline-flex;
    min-height: 23px;
    padding: 4px 9px;
    align-items: center;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.zc-opportunity-category-badge {
    background: #edf2f6;
    color: #53697e;
}

.zc-opportunity-status.is-open {
    background: #e9f6ec;
    color: #2e9846;
}

.zc-opportunity-status.is-warning {
    background: #fff3dd;
    color: #b7740e;
}

.zc-opportunity-status.is-urgent,
.zc-opportunity-status.is-closed,
.zc-opportunity-status.is-cancelled {
    background: #fdeaea;
    color: #d44141;
}

.zc-archive-opportunity-main h2 {
    margin: 0 0 7px;
    font-size: 17px;
    line-height: 1.4;
}

.zc-archive-opportunity-main h2 a {
    color: var(--zc-navy);
}

.zc-archive-opportunity-main h2 a:hover {
    color: #2f9f49;
}

.zc-archive-opportunity-excerpt {
    margin: 0 0 13px;
    color: var(--zc-muted);
    font-size: 12px;
    line-height: 1.6;
}

.zc-archive-opportunity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.zc-archive-opportunity-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #607286;
    font-size: 11px;
}

.zc-archive-opportunity-meta svg {
    width: 14px;
    height: 14px;
    color: #33516e;
}

.zc-archive-opportunity-action {
    padding-left: 12px;
}

.zc-archive-opportunity-action .zc-button {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 11px;
}

.zc-pagination {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 32px;
}

.zc-pagination .page-numbers {
    display: inline-flex;
    width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7dfe7;
    border-radius: 6px;
    background: #fff;
    color: var(--zc-navy);
    font-size: 12px;
    font-weight: 700;
}

.zc-pagination .page-numbers.current,
.zc-pagination .page-numbers:hover {
    border-color: #31a84a;
    background: #31a84a;
    color: #fff;
}

.zc-archive-empty {
    padding: 64px 25px;
    background: #fff;
    border: 1px solid #dfe6ed;
    border-radius: 10px;
    text-align: center;
}

.zc-archive-empty h2 {
    margin: 0 0 10px;
    color: var(--zc-navy);
}

.zc-archive-empty p {
    margin: 0 0 24px;
    color: var(--zc-muted);
}

/* ============================================
   OPPORTUNITY ARCHIVE RESPONSIVE
   ============================================ */

@media (max-width: 1000px) {
    .zc-opportunity-filter-form {
        grid-template-columns: 1fr 1fr;
    }

    .zc-filter-search {
        grid-column: 1 / -1;
    }

    .zc-filter-actions {
        align-self: end;
    }
}

@media (max-width: 700px) {
    .zc-archive-hero {
        padding: 50px 0 78px;
    }

    .zc-opportunity-filter-card {
        padding: 18px;
        margin-top: -30px;
    }

    .zc-opportunity-filter-form {
        grid-template-columns: 1fr;
    }

    .zc-filter-search {
        grid-column: auto;
    }

    .zc-filter-actions {
        flex-wrap: wrap;
    }

    .zc-filter-submit {
        flex: 1;
    }

    .zc-opportunity-results-header {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 38px;
    }

    .zc-archive-opportunity-card {
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: start;
        gap: 13px;
        padding: 18px;
    }

    .zc-archive-opportunity-icon {
        width: 42px;
        height: 42px;
    }

    .zc-archive-opportunity-action {
        grid-column: 1 / -1;
        padding: 5px 0 0;
    }

    .zc-archive-opportunity-action .zc-button {
        width: 100%;
    }

    .zc-archive-opportunity-top {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .zc-archive-opportunity-main h2 {
        font-size: 15px;
    }
}



/* =========================================================
   ZIMCONTRACT V2 — SUPPLIER CARDS
   ========================================================= */

.zc-supplier-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.zc-v2-supplier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e8e5;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(20, 33, 61, 0.055);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.zc-v2-supplier-card:hover {
    transform: translateY(-4px);
    border-color: #92c5ac;
    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.11);
}

.zc-v2-card-accent {
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #087443,
        #24a56a
    );
}

.zc-v2-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 22px 0;
}

.zc-v2-card-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 132px;
    height: 70px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #edf1ef;
    border-radius: 12px;
    text-decoration: none;
}

.zc-v2-card-logo img {
    display: block;
    width: 100%;
    max-width: 116px;
    height: 54px;
    margin: 0;
    object-fit: contain;
    object-position: left center;
}

.zc-v2-card-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #edf8f2;
    color: #087443;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.zc-v2-card-statuses {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
}

.zc-v2-trust-badge,
.zc-v2-compliance-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 750;
    line-height: 1;
}

.zc-v2-trust-badge {
    padding: 6px 9px;
    background: #eef4fb;
    color: #173e67;
    border: 1px solid #d5e3f1;
}

.zc-v2-trust-badge svg {
    width: 15px;
    height: 15px;
    fill: #1b6ca8;
}

.zc-v2-trust-badge .zc-v2-trust-check {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zc-v2-compliance-status {
    padding: 6px 9px;
    border: 1px solid transparent;
}

.zc-v2-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.zc-v2-compliance-status.is-green {
    background: #edf9f2;
    color: #087443;
    border-color: #c8ead6;
}

.zc-v2-compliance-status.is-green .zc-v2-status-dot {
    background: #12a15c;
}

.zc-v2-compliance-status.is-amber {
    background: #fff8e7;
    color: #946200;
    border-color: #f2dfae;
}

.zc-v2-compliance-status.is-amber .zc-v2-status-dot {
    background: #d49a1e;
}

.zc-v2-compliance-status.is-red {
    background: #fff0f0;
    color: #b42318;
    border-color: #f2ceca;
}

.zc-v2-compliance-status.is-red .zc-v2-status-dot {
    background: #d92d20;
}

.zc-v2-card-identity {
    padding: 18px 22px 0;
}

.zc-v2-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 780;
    line-height: 1.25;
}

.zc-v2-card-title a {
    color: #14213d;
    text-decoration: none;
}

.zc-v2-card-title a:hover {
    color: #087443;
}

.zc-v2-card-category {
    margin: 7px 0 0;
    color: #087443;
    font-size: 12px;
    font-weight: 700;
}

.zc-v2-card-description {
    margin: 12px 0 0;
    color: #5d6877;
    font-size: 14px;
    line-height: 1.65;
}

.zc-v2-card-block {
    margin: 18px 22px 0;
    padding-top: 15px;
    border-top: 1px solid #edf1ef;
}

.zc-v2-card-block-heading {
    margin-bottom: 9px;
    color: #758075;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.zc-v2-document-list,
.zc-v2-reference-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.zc-v2-document-list span,
.zc-v2-reference-list span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    padding: 6px 9px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 650;
    line-height: 1.2;
}

.zc-v2-document-list span {
    background: #eef9f3;
    color: #087443;
    border: 1px solid #d2ecdd;
}

.zc-v2-document-list svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    fill: currentColor;
}

.zc-v2-reference-list span {
    overflow: hidden;
    max-width: 100%;
    background: #f4f6f8;
    color: #445064;
    border: 1px solid #e4e8ed;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zc-v2-card-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 18px 22px 0;
    overflow: hidden;
    background: #f7faf8;
    border: 1px solid #e7ede9;
    border-radius: 12px;
}

.zc-v2-card-metric {
    min-width: 0;
    padding: 12px 10px;
    text-align: center;
}

.zc-v2-card-metric + .zc-v2-card-metric {
    border-left: 1px solid #e2e8e4;
}

.zc-v2-card-metric span,
.zc-v2-card-metric strong {
    display: block;
}

.zc-v2-card-metric span {
    margin-bottom: 4px;
    color: #7b857e;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.zc-v2-card-metric strong {
    overflow: hidden;
    color: #14213d;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zc-v2-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding: 20px 22px 22px;
}

.zc-v2-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.zc-v2-card-location svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: #8a948d;
}

.zc-v2-card-location span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zc-v2-view-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 10px 14px;
    background: #087443;
    color: #ffffff !important;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.zc-v2-view-profile:hover {
    background: #065d36;
    transform: translateX(2px);
}

.zc-v2-view-profile svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.zc-directory-empty {
    grid-column: 1 / -1;
    padding: 60px 24px;
    background: #ffffff;
    border: 1px dashed #ccd7d1;
    border-radius: 18px;
    text-align: center;
}

.zc-directory-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: #edf8f2;
    border-radius: 14px;
}

.zc-directory-empty-icon svg {
    width: 24px;
    height: 24px;
    fill: #087443;
}

.zc-directory-empty h3 {
    margin: 0 0 7px;
    color: #14213d;
    font-size: 20px;
}

.zc-directory-empty p {
    margin: 0 0 17px;
    color: #667085;
}

.zc-directory-empty a {
    color: #087443;
    font-weight: 750;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .zc-supplier-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .zc-v2-card-header {
        align-items: center;
        padding: 18px 18px 0;
    }

    .zc-v2-card-logo {
        width: 105px;
        height: 62px;
    }

    .zc-v2-card-logo img {
        max-width: 90px;
        height: 46px;
    }

    .zc-v2-card-statuses {
        gap: 5px;
    }

    .zc-v2-trust-badge,
    .zc-v2-compliance-status {
        padding: 5px 7px;
        font-size: 9px;
    }

    .zc-v2-card-identity {
        padding: 16px 18px 0;
    }

    .zc-v2-card-block,
    .zc-v2-card-metrics {
        margin-left: 18px;
        margin-right: 18px;
    }

    .zc-v2-card-metric {
        padding: 11px 5px;
    }

    .zc-v2-card-metric span {
        font-size: 8px;
    }

    .zc-v2-card-metric strong {
        font-size: 10px;
    }

    .zc-v2-card-footer {
        padding: 18px;
    }
}



/* =========================================================
   ZIMCONTRACT V2 — SUPPLIER DIRECTORY WORKSPACE
   ========================================================= */

.zc-directory {
    width: min(100% - 48px, 1600px);
    margin: 0 auto;
    padding: 46px 0 84px;
}

.zc-directory-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
    padding: clamp(34px, 5vw, 64px);
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 18%, rgba(48, 177, 104, 0.28), transparent 30%),
        linear-gradient(135deg, #081f37 0%, #0e3a4d 62%, #087443 135%);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(8, 31, 55, 0.16);
}

.zc-directory-hero-copy { max-width: 880px; }
.zc-directory-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 11px;
    color: #dff7e9;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.zc-directory-hero h1 {
    max-width: 820px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.zc-directory-hero-copy > p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(15px, 1.5vw, 18px);
}

.zc-directory-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 34px;
    margin-top: 28px;
}

.zc-directory-stats div { display: grid; gap: 1px; }
.zc-directory-stats strong { color: #fff; font-size: 18px; }
.zc-directory-stats span { color: rgba(255,255,255,.65); font-size: 12px; }

.zc-directory-hero-search {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    max-width: 980px;
    margin-top: 34px;
    padding: 8px 8px 8px 18px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 14px 40px rgba(0,0,0,.17);
}

.zc-directory-hero-search > svg { width: 22px; color: #7a8794; }
.zc-directory-hero-search input {
    width: 100%; min-width: 0; padding: 13px 4px; border: 0; outline: 0;
    color: #14213d; background: transparent; font-size: 15px;
}
.zc-directory-hero-search button,
.zc-filter-apply {
    min-height: 48px; padding: 12px 20px; border: 0; border-radius: 10px;
    background: #087443; color: #fff; font-size: 13px; font-weight: 800;
}

.zc-directory-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
}

.zc-directory-sidebar { position: sticky; top: 24px; }
.zc-directory-filter-panel {
    padding: 22px;
    background: #fff;
    border: 1px solid #e1e8e5;
    border-radius: 18px;
    box-shadow: 0 9px 30px rgba(20,33,61,.055);
}

.zc-filter-heading {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 20px; padding-bottom: 17px; border-bottom: 1px solid #edf1ef;
}
.zc-filter-heading span { color: #087443; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.zc-filter-heading h2 { margin: 3px 0 0; color: #14213d; font-size: 18px; }
.zc-filter-close { display: none; border: 0; background: transparent; color: #667085; font-size: 28px; line-height: 1; }

.zc-filter-field { display: grid; gap: 7px; margin-bottom: 15px; }
.zc-filter-field > span { color: #445064; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .035em; }
.zc-filter-field select {
    width: 100%; min-height: 44px; padding: 9px 34px 9px 11px;
    color: #27364a; background: #fbfcfc; border: 1px solid #dce4e0;
    border-radius: 9px; font-size: 13px;
}
.zc-filter-actions { display: grid; gap: 9px; margin-top: 21px; }
.zc-filter-reset,
.zc-directory-reset-inline {
    min-height: 42px; padding: 10px 14px; color: #087443; background: #f1f8f4;
    border: 1px solid #d5eadd; border-radius: 9px; font-size: 12px; font-weight: 800;
}

.zc-directory-main { min-width: 0; }
.zc-directory-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 44px; margin-bottom: 16px;
}
.zc-directory-count { margin: 0; color: #667085; font-size: 14px; }
.zc-directory-count strong { color: #14213d; font-size: 17px; }
.zc-directory-mobile-filter { display: none; align-items: center; gap: 7px; padding: 9px 13px; color: #14213d; background: #fff; border: 1px solid #dce4e0; border-radius: 9px; font-weight: 750; }
.zc-directory-mobile-filter svg { width: 17px; }

.zc-supplier-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.zc-v2-card-header { gap: 10px; padding: 19px 18px 0; }
.zc-v2-card-logo { width: 110px; height: 64px; }
.zc-v2-card-logo img { max-width: 94px; height: 48px; }
.zc-v2-card-identity { padding: 16px 18px 0; }
.zc-v2-card-title { font-size: 17px; }
.zc-v2-card-description { font-size: 12.5px; line-height: 1.55; }
.zc-v2-card-block { margin: 15px 18px 0; }
.zc-v2-card-metrics { margin: 15px 18px 0; }
.zc-v2-card-footer { padding: 17px 18px 19px; }
.zc-v2-view-profile { min-height: 37px; padding: 9px 12px; }

.zc-directory-pagination { margin-top: 34px; }
.zc-directory-pagination ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.zc-directory-pagination a,
.zc-directory-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; color: #14213d; background: #fff; border: 1px solid #d7e0db; border-radius: 9px; text-decoration: none; }
.zc-directory-pagination .current { color: #fff; background: #087443; border-color: #087443; }

.zc-directory-skeleton-card { min-height: 420px; padding: 22px; background: #fff; border: 1px solid #e5ebe8; border-radius: 18px; }
.zc-skeleton { background: linear-gradient(90deg,#edf1ef 25%,#f7f9f8 50%,#edf1ef 75%); background-size: 200% 100%; border-radius: 8px; animation: zc-shimmer 1.25s infinite; }
.zc-skeleton-count { width: 150px; height: 18px; }
.zc-skeleton-logo { width: 105px; height: 60px; margin-bottom: 26px; }
.zc-skeleton-title { width: 72%; height: 20px; margin-bottom: 16px; }
.zc-skeleton-line { width: 100%; height: 12px; margin-bottom: 10px; }
.zc-skeleton-line.short { width: 68%; }
.zc-skeleton-metrics { height: 62px; margin-top: 25px; }
@keyframes zc-shimmer { to { background-position: -200% 0; } }

.zc-directory-error { padding: 28px; color: #8b2430; background: #fff2f3; border: 1px solid #f0cbd0; border-radius: 14px; }
.zc-filter-overlay { position: fixed; inset: 0; z-index: 998; background: rgba(4,19,34,.55); }

@media (max-width: 1380px) {
    .zc-directory { width: min(100% - 40px, 1440px); }
    .zc-directory-layout { grid-template-columns: 250px minmax(0,1fr); gap: 22px; }
    .zc-supplier-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 980px) {
    .zc-directory { width: min(100% - 30px, 900px); padding-top: 30px; }
    .zc-directory-layout { display: block; }
    .zc-directory-sidebar {
        position: fixed; top: 0; right: 0; bottom: 0; z-index: 999;
        width: min(88vw, 350px); padding: 14px; overflow-y: auto;
        background: #f7faf8; transform: translateX(105%); transition: transform .25s ease;
    }
    .zc-directory-sidebar.is-open { transform: translateX(0); }
    .zc-directory-filter-panel { min-height: 100%; }
    .zc-filter-close, .zc-directory-mobile-filter { display: inline-flex; }
    body.zc-filter-drawer-open { overflow: hidden; }
}

@media (max-width: 700px) {
    .zc-directory { width: min(100% - 24px, 680px); padding: 18px 0 54px; }
    .zc-directory-hero { padding: 28px 20px; border-radius: 18px; }
    .zc-directory-hero h1 { font-size: clamp(34px, 11vw, 48px); }
    .zc-directory-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .zc-directory-hero-search { grid-template-columns: 21px minmax(0,1fr); padding: 8px 13px; }
    .zc-directory-hero-search button { grid-column: 1 / -1; width: 100%; }
    .zc-supplier-grid { grid-template-columns: 1fr; }
    .zc-v2-card-header { padding: 18px 18px 0; }
}

.zc-registration {
	max-width: 900px;
	margin: 50px auto;
	padding: 0 24px;
}

.zc-registration-header {
	max-width: 680px;
	margin-bottom: 30px;
}

.zc-registration-eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.zc-registration-header h1 {
	margin: 0 0 12px;
	font-size: clamp(32px, 5vw, 48px);
	line-height: 1.1;
}

.zc-registration-header p {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
}

.zc-registration-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.zc-registration-section {
	padding: 26px;
	background: #ffffff;
	border: 1px solid #e3e7eb;
	border-radius: 12px;
}

.zc-registration-section h2 {
	margin: 0 0 20px;
	font-size: 20px;
}

.zc-account-type-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.zc-account-type-card {
	display: block;
	position: relative;
	cursor: pointer;
}

.zc-account-type-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.zc-account-type-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 115px;
	padding: 22px;
	border: 2px solid #e1e5e8;
	border-radius: 10px;
	transition:
		border-color 0.2s ease,
		background 0.2s ease;
}

.zc-account-type-card input:checked +
.zc-account-type-content {
	border-color: #1d6b50;
	background: #f2f8f5;
}

.zc-account-type-content strong {
	font-size: 17px;
}

.zc-account-type-content small {
	font-size: 14px;
	line-height: 1.55;
}

.zc-registration-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.zc-registration-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.zc-registration-field.is-full {
	grid-column: 1 / -1;
}

.zc-registration-field label {
	font-weight: 600;
}

.zc-registration-field label span {
	color: #b42318;
}

.zc-registration-field input,
.zc-registration-field select,
.zc-registration-field textarea {
	width: 100%;
	padding: 12px 13px;
	border: 1px solid #cdd4da;
	border-radius: 7px;
	background: #ffffff;
	font: inherit;
	box-sizing: border-box;
}

.zc-registration-field input:focus,
.zc-registration-field select:focus,
.zc-registration-field textarea:focus {
	border-color: #1d6b50;
	outline: 2px solid rgba(29, 107, 80, 0.12);
}

.zc-registration-field textarea {
	resize: vertical;
}

.zc-registration-field small {
	color: #687078;
}

.zc-registration-errors {
	padding: 18px 20px;
	background: #fff3f2;
	border: 1px solid #f4c7c3;
	border-radius: 9px;
	color: #8a1c13;
}

.zc-registration-errors ul {
	margin: 10px 0 0 20px;
}

.zc-registration-terms {
	padding: 18px 20px;
	background: #f7f8f9;
	border-radius: 8px;
}

.zc-registration-terms label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.zc-registration-submit,
.zc-auth-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 50px;
	padding: 12px 24px;
	border: 0;
	border-radius: 7px;
	background: #1d6b50;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.zc-registration-login {
	margin: 0;
	text-align: center;
}

.zc-registration-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.zc-auth-notice {
	max-width: 700px;
	margin: 50px auto;
	padding: 30px;
	background: #ffffff;
	border: 1px solid #e3e7eb;
	border-radius: 12px;
	text-align: center;
}

/* Account status */
.zc-account-status {
	min-height: 62vh;
	padding: 72px 0;
	background: #f5f7fa;
}

.zc-account-status-card {
	max-width: 720px;
	margin: 0 auto;
	padding: 48px;
	border: 1px solid #dfe5ec;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(15, 31, 52, 0.08);
}

.zc-account-status-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	color: #08783e;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.zc-account-status-card h1 {
	margin: 0 0 16px;
	color: #0f1f34;
}

.zc-account-status-card p {
	color: #526174;
}

.zc-account-status-lead {
	font-size: 1.08rem;
}

.zc-account-status-type {
	font-weight: 600;
}

.zc-account-status-reason {
	margin: 24px 0;
	padding: 18px 20px;
	border-left: 3px solid #08783e;
	background: #f5faf7;
}

.zc-account-status-reason p {
	margin: 6px 0 0;
}

.zc-account-status-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.zc-account-status-actions .zc-button-light {
	border-color: #173653;
	background: #fff;
	color: #173653;
}

.zc-account-status-actions .zc-button-light:hover,
.zc-account-status-actions .zc-button-light:focus-visible {
	border-color: #173653;
	background: #173653;
	color: #fff;
}

.zc-account-status-actions .zc-button-light:focus-visible {
	outline: 3px solid rgba(21, 155, 74, 0.28);
	outline-offset: 2px;
}

@media (max-width: 640px) {
	.zc-account-status {
		padding: 40px 0;
	}

	.zc-account-status-card {
		padding: 30px 24px;
	}

	.zc-account-status-actions .zc-button {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 700px) {
	.zc-registration {
		margin: 30px auto;
		padding: 0 16px;
	}

	.zc-account-type-grid,
	.zc-registration-grid {
		grid-template-columns: 1fr;
	}

	.zc-registration-field.is-full {
		grid-column: auto;
	}

	.zc-registration-section {
		padding: 20px;
	}
}

.zc-single-opportunity {
	padding: 72px 24px;
	background: #f7f9fb;
	min-height: 70vh;
}

.zc-single-opportunity-container {
	max-width: 1100px;
	margin: 0 auto;
}

.zc-opportunity-locked,
.zc-opportunity-full {
	padding: 48px;
	background: #ffffff;
	border: 1px solid #e3e8ee;
	border-radius: 16px;
	box-shadow: 0 12px 35px rgba(9, 34, 64, 0.06);
}

.zc-opportunity-locked {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.zc-opportunity-locked-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #eef3ff;
	font-size: 28px;
}

.zc-opportunity-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	color: #2f62ff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.zc-opportunity-title {
	max-width: 900px;
	margin: 0 0 24px;
	color: #092240;
	font-size: clamp(34px, 6vw, 60px);
	line-height: 1.08;
}

.zc-opportunity-public-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 16px;
	margin: -8px 0 24px;
	color: #5f6c7b;
	font-size: 14px;
}

.zc-opportunity-locked .zc-opportunity-title {
	margin-right: auto;
	margin-left: auto;
}

.zc-opportunity-lock-message {
	max-width: 650px;
	margin: 0 auto 28px;
}

.zc-opportunity-lock-message h2 {
	margin: 0 0 12px;
	color: #092240;
	font-size: 24px;
}

.zc-opportunity-lock-message p {
	margin: 0;
	color: #5f6c7b;
	font-size: 16px;
	line-height: 1.7;
}

.zc-opportunity-lock-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.zc-opportunity-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease;
}

.zc-opportunity-button:hover {
	transform: translateY(-1px);
}

.zc-opportunity-button-primary {
	background: #2f62ff;
	border: 1px solid #2f62ff;
	color: #ffffff;
}

.zc-opportunity-button-secondary {
	background: #ffffff;
	border: 1px solid #b8c3cf;
	color: #092240;
}

.zc-opportunity-content {
	color: #172b42;
	font-size: 16px;
	line-height: 1.75;
}

.zc-opportunity-content > :first-child {
	margin-top: 0;
}

.zc-opportunity-content > :last-child {
	margin-bottom: 0;
}

@media (max-width: 700px) {
	.zc-single-opportunity {
		padding: 36px 16px;
	}

	.zc-opportunity-locked,
	.zc-opportunity-full {
		padding: 28px 20px;
		border-radius: 12px;
	}

	.zc-opportunity-lock-actions {
		flex-direction: column;
	}

	.zc-opportunity-button {
		width: 100%;
		box-sizing: border-box;
	}
}
/* ============================================
   APPROVED HOMEPAGE PRESENTATION PASS
   ============================================ */
.zc-homepage { background:#fff; }
.zc-home-hero { min-height:300px; padding:34px 0 42px; background:radial-gradient(circle at 73% 48%,rgba(0,149,255,.30),transparent 23%),radial-gradient(circle at 88% 75%,rgba(0,111,214,.22),transparent 30%),linear-gradient(105deg,#03284b 0%,#043b6d 58%,#052c54 100%); }
.zc-home-hero::after { content:""; position:absolute; inset:0 0 0 48%; opacity:.42; background-image:radial-gradient(circle,rgba(63,191,255,.8) 1px,transparent 1.5px),linear-gradient(120deg,transparent 48%,rgba(52,174,255,.18) 49%,transparent 50%); background-size:28px 28px,90px 90px; mask-image:linear-gradient(90deg,transparent,#000); }
.zc-home-hero-inner { display:flex; min-height:220px; align-items:center; }
.zc-home-hero-copy { max-width:620px; }
.zc-home-hero h1 { margin-bottom:12px; font-size:clamp(48px,5vw,68px); line-height:.94; }
.zc-home-hero-copy>p { margin-bottom:20px; font-size:16px; }
.zc-home-hero-actions .zc-button { min-height:42px; padding:10px 18px; }
.zc-button-green { background:#159b4a; border-color:#159b4a; color:#fff; }
.zc-button-green:hover { background:#118440; color:#fff; }

.zc-home-opportunities { padding:18px 0 14px; }
.zc-opportunity-dashboard { border:0; box-shadow:none; }
.zc-opportunity-dashboard-header { padding:0 0 10px; }
.zc-opportunity-dashboard-header h2 { margin-bottom:2px; font-size:24px; }
.zc-opportunity-dashboard-header p { margin:0; font-size:12px; }
.zc-dashboard-view-all { font-size:12px; }
.zc-opportunity-table-head { min-height:30px; padding:0 10px; border-radius:5px 5px 0 0; }
.zc-dashboard-opportunity { min-height:34px; padding:0 10px; }
.zc-dashboard-opportunity>div { padding:5px 8px; font-size:10px; line-height:1.25; }
.zc-dashboard-opportunity h3 { font-size:10px; line-height:1.25; }
.zc-dashboard-opportunity-title { grid-template-columns:16px minmax(0,1fr); gap:6px; }
.zc-dashboard-document-icon { width:14px; height:14px; }
.zc-opportunity-table-head span { padding:0 8px; font-size:9px; }

.zc-home-manage { padding:42px 0; background:linear-gradient(90deg,#f4f9fc,#edf6fb); }
.zc-home-manage-grid { display:grid; grid-template-columns:320px minmax(0,1fr); gap:42px; align-items:stretch; }
.zc-home-manage-intro h2 { margin:0 0 8px; color:var(--zc-navy); font-size:29px; line-height:1.12; }
.zc-home-manage-intro>strong { display:block; margin-bottom:12px; color:#159b4a; font-size:14px; }
.zc-home-manage-intro p { margin-bottom:20px; color:#36536f; font-size:14px; line-height:1.65; }
.zc-home-manage-intro .zc-button { min-height:42px; padding:10px 16px; font-size:12px; }
.zc-home-benefits { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.zc-home-benefit-card { padding:22px 18px; background:#fff; border:1px solid #e3ebf2; border-radius:5px; text-align:center; }
.zc-home-benefit-icon { display:inline-flex; width:38px; height:38px; margin-bottom:12px; align-items:center; justify-content:center; border:2px solid #16a052; border-radius:50%; color:#159b4a; font-size:13px; font-weight:800; }
.zc-home-benefit-card h3 { margin-bottom:10px; color:#07366a; font-size:14px; line-height:1.25; text-transform:none; }
.zc-home-benefit-card p { margin:0; color:#36536f; font-size:12px; line-height:1.6; }
.zc-home-assessment-note { margin:16px 0 0; color:#60768b; font-size:11px; text-align:right; }

.zc-home-suppliers { padding:44px 0 46px; background:#fff; }
.zc-home-section-heading-row { margin-bottom:22px; align-items:end; }
.zc-home-section-heading-row>div>span { margin-bottom:6px; color:#159b4a; font-size:11px; }
.zc-home-section-heading-row h2 { font-size:29px; line-height:1.18; }
.zc-home-supplier-heading-side { display:flex; max-width:560px; align-items:flex-end; justify-content:space-between; gap:24px; }
.zc-home-supplier-heading-side p { max-width:390px; margin:0; color:#557087; font-size:12px; line-height:1.55; }
.zc-home-supplier-heading-side a { flex:0 0 auto; color:#07366a; font-size:11px; font-weight:700; }
.zc-home-supplier-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:26px; }
.zc-home-supplier-card { display:flex; min-height:100px; padding:19px; flex-direction:column; border:1px solid #dce7ef; border-radius:6px; box-shadow:0 4px 14px rgba(16,42,67,.04); }
.zc-home-supplier-brand { display:flex; align-items:center; gap:8px; }
.zc-home-supplier-mark { display:inline-flex; width:30px; height:30px; align-items:center; justify-content:center; flex:0 0 auto; border-radius:50%; background:#eaf4fb; color:#0862a7; font-size:14px; font-weight:800; }
.zc-home-supplier-brand h3 { margin:0; color:#07366a; font-size:15px; line-height:1.25; }
.zc-home-supplier-category { margin:6px 0; color:#16864a; font-size:10px; line-height:1.4; }
.zc-home-supplier-description { margin:0 0 7px; color:#476078; font-size:12px; line-height:1.55; }
.zc-home-supplier-website { margin:0 0 7px; color:#476078; font-size:10px; }
.zc-home-execution { display:flex; gap:14px; margin:4px 0 8px; color:#60768b; font-size:10px; }
.zc-home-execution strong { color:#07366a; }
.zc-home-references { margin-bottom:10px; font-size:10px; line-height:1.5; }
.zc-home-references strong,.zc-home-references span { display:block; }
.zc-home-references strong { color:#07366a; }
.zc-home-references span { color:#60768b; }
.zc-home-compliance { margin-top:auto; padding-top:7px; border-top:1px solid #edf1f4; color:#159b4a; font-size:10px; font-weight:700; }
.zc-home-view-supplier { margin-top:10px; color:#07366a; font-size:11px; font-weight:700; }

.zc-home-workflow { padding:42px 0 44px; background:#fbfcfd; border-top:1px solid #eef2f5; }
.zc-home-workflow-heading { margin-bottom:24px; }
.zc-home-workflow-heading>span { display:block; color:#159b4a; font-size:11px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
.zc-home-workflow-heading h2 { margin:2px 0 0; color:#07366a; font-size:29px; line-height:1.2; }
.zc-home-workflow-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:26px; }
.zc-home-workflow-step { position:relative; padding:14px 12px 0 46px; border-top:1px dashed #6fa8d0; }
.zc-home-step-number { position:absolute; top:-15px; left:0; display:flex; width:30px; height:30px; align-items:center; justify-content:center; background:#fff; border:2px solid #19a65a; border-radius:50%; color:#159b4a; font-size:11px; font-weight:800; }
.zc-home-workflow-step h3 { margin:0 0 8px; color:#07366a; font-size:14px; }
.zc-home-workflow-step p { margin:0; color:#4f687e; font-size:12px; line-height:1.6; }

.zc-final-cta { padding:34px 0; }
.zc-final-cta::before,.zc-final-cta::after { display:none; }
.zc-final-cta-inner { grid-template-columns:minmax(0,1fr) 500px; gap:44px; padding:0; }
.zc-final-cta h2 { margin-bottom:8px; font-size:27px; }
.zc-final-cta p { margin-bottom:0; font-size:13px; line-height:1.6; }
.zc-final-cta-actions { gap:10px; }
.zc-final-cta-actions>div { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.zc-final-cta-actions .zc-button { min-height:42px; padding:10px 14px; font-size:11px; }
.zc-final-cta-actions small { color:rgba(255,255,255,.7); font-size:10px; line-height:1.45; text-align:center; }

@media (max-width:1050px) {
 .zc-home-manage-grid { grid-template-columns:1fr; }
 .zc-home-benefits,.zc-home-supplier-grid,.zc-home-workflow-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
 .zc-final-cta-inner { grid-template-columns:1fr; }
}
@media (max-width:700px) {
 .zc-home-hero { padding:42px 0 50px; }
 .zc-home-hero::after { left:35%; }
 .zc-home-hero h1 { font-size:48px; }
 .zc-home-benefits,.zc-home-supplier-grid,.zc-home-workflow-grid { grid-template-columns:1fr; }
 .zc-home-section-heading-row,.zc-home-supplier-heading-side { display:block; }
 .zc-home-supplier-heading-side p { margin:8px 0; }
 .zc-home-supplier-card { min-height:0; }
 .zc-home-workflow-step { margin-top:14px; }
 .zc-final-cta-actions>div { grid-template-columns:1fr; }
 .zc-home-assessment-note { text-align:left; }
}

/* =========================================================
   PUBLIC SUPPLIER DIRECTORY — FINAL PRESENTATION PASS
   Public/guest view only. Authenticated buyer directory is
   intentionally excluded from these refinements.
   ========================================================= */

body.zc-supplier-directory-page:not(.logged-in) .zc-directory {
    padding-top: 28px;
    padding-bottom: 64px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-hero {
    margin-bottom: 28px;
    padding: 38px 46px 42px;
    border-radius: 20px;
    box-shadow: 0 16px 46px rgba(8, 31, 55, 0.13);
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-hero-copy {
    max-width: 780px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-eyebrow {
    margin-bottom: 11px;
    padding: 6px 10px;
    font-size: 10px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-hero h1 {
    max-width: 700px;
    margin-bottom: 10px;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.04;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-hero-copy > p {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.55;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-hero-search {
    max-width: 900px;
    margin-top: 24px;
    padding: 6px 6px 6px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-hero-search input {
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 14px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-hero-search button {
    min-height: 44px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-layout {
    gap: 24px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-filter-panel {
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(20,33,61,.045);
}

body.zc-supplier-directory-page:not(.logged-in) .zc-filter-heading {
    margin-bottom: 16px;
    padding-bottom: 14px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-filter-field {
    margin-bottom: 13px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-filter-field select {
    min-height: 42px;
    font-size: 13px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-toolbar {
    min-height: 42px;
    margin-bottom: 14px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-count {
    font-size: 14px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-directory-count strong {
    font-size: 16px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-supplier-grid {
    align-items: stretch;
    gap: 18px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-v2-supplier-card {
    height: 100%;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(20,33,61,.045);
}

body.zc-supplier-directory-page:not(.logged-in) .zc-v2-card-header {
    padding: 17px 17px 0;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-v2-card-logo {
    width: 104px;
    height: 60px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-v2-card-logo img {
    max-width: 90px;
    height: 44px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-v2-card-identity {
    padding: 15px 17px 0;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-v2-card-title {
    font-size: 18px;
    line-height: 1.28;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-v2-card-category {
    margin-top: 6px;
    font-size: 12px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-v2-card-description {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-v2-card-block,
body.zc-supplier-directory-page:not(.logged-in) .zc-v2-card-metrics {
    margin-left: 17px;
    margin-right: 17px;
}

body.zc-supplier-directory-page:not(.logged-in) .zc-v2-card-footer {
    padding: 16px 17px 18px;
}

@media (min-width: 1101px) {
    body.zc-supplier-directory-page:not(.logged-in) .zc-directory-layout {
        grid-template-columns: 250px minmax(0, 1fr);
    }

    body.zc-supplier-directory-page:not(.logged-in) .zc-supplier-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    body.zc-supplier-directory-page:not(.logged-in) .zc-directory {
        padding-top: 18px;
        padding-bottom: 48px;
    }

    body.zc-supplier-directory-page:not(.logged-in) .zc-directory-hero {
        padding: 26px 20px 28px;
        border-radius: 16px;
    }

    body.zc-supplier-directory-page:not(.logged-in) .zc-directory-hero h1 {
        font-size: clamp(32px, 10vw, 44px);
    }

    body.zc-supplier-directory-page:not(.logged-in) .zc-directory-hero-search {
        margin-top: 20px;
    }
}
