/**
 * LinkCentre media and press page
 */

.press-page {
    --press-primary: #00498f;
    --press-primary-dark: #003366;
    --press-accent: #00a7dd;
    --press-gold: #ffd700;
    --press-ink: #111827;
    --press-text: #374151;
    --press-muted: #6b7280;
    --press-line: #e5e7eb;
    --press-wash: #eef7fd;
    --press-paper: #ffffff;
    background: #f9fafb;
    color: var(--press-ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
}

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

.press-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.press-breadcrumb {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    gap: 9px;
    color: var(--press-muted);
    font-size: 13px;
}

.press-breadcrumb a {
    color: var(--press-primary);
    text-decoration: none;
}

.press-breadcrumb a:hover {
    text-decoration: underline;
}

.press-hero {
    position: relative;
    overflow: hidden;
    border-block: 1px solid #d9eaf7;
    background:
        radial-gradient(circle at 88% 20%, rgba(0, 167, 221, 0.14), transparent 24rem),
        linear-gradient(135deg, #f3faff 0%, #e8f4fc 58%, #f8fbfd 100%);
}

.press-hero::before {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(0, 73, 143, 0.09);
    border-radius: 50%;
    content: "";
}

.press-hero::after {
    position: absolute;
    right: 80px;
    bottom: -170px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(0, 73, 143, 0.08);
    border-radius: 50%;
    content: "";
}

.press-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 480px;
    padding-block: 70px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
    gap: 80px;
    align-items: center;
}

.press-eyebrow,
.press-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--press-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.press-hero h1 {
    max-width: 700px;
    margin: 0 0 20px;
    color: var(--press-ink);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.03;
}

.press-hero h1 span {
    color: var(--press-primary);
}

.press-hero-lede {
    max-width: 630px;
    margin: 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
}

.press-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.press-button {
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--press-primary-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.press-button:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.press-button-primary {
    background: var(--press-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 73, 143, 0.2);
}

.press-button-primary:hover {
    background: var(--press-primary-dark);
    color: #fff;
}

.press-button-secondary {
    border-color: #bdd7eb;
    background: rgba(255, 255, 255, 0.72);
}

.press-button-secondary:hover {
    border-color: var(--press-primary);
    background: #fff;
    color: var(--press-primary-dark);
}

.press-button-small {
    min-height: 42px;
    padding: 9px 17px;
    background: var(--press-primary);
    color: #fff;
}

.press-button-small:hover {
    background: var(--press-primary-dark);
    color: #fff;
}

.press-download-note {
    margin: 12px 0 0;
    color: var(--press-muted);
    font-size: 12px;
}

.press-hero-mark {
    min-height: 335px;
    padding: 36px 30px;
    border: 1px solid rgba(0, 73, 143, 0.13);
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 24px 70px rgba(0, 51, 102, 0.12);
    backdrop-filter: blur(10px);
    transform: rotate(1.5deg);
}

.press-hero-mark img {
    width: min(230px, 75%);
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 51, 102, 0.14);
}

.press-hero-year {
    color: var(--press-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.press-stats {
    position: relative;
    z-index: 2;
    margin-top: -34px;
    border: 1px solid var(--press-line);
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--press-paper);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.press-stats article {
    min-height: 100px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.press-stats article + article {
    border-left: 1px solid var(--press-line);
}

.press-stats strong {
    color: var(--press-primary);
    font-size: 27px;
    font-weight: 800;
    line-height: 1.1;
}

.press-stats span {
    margin-top: 6px;
    color: var(--press-muted);
    font-size: 12px;
    font-weight: 600;
}

.press-content {
    padding: 35px 0 70px;
}

.press-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--press-line);
}

.press-section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.press-section-heading-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.press-section-heading h2,
.press-cta h2 {
    margin: 0;
    color: var(--press-ink);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.15;
}

.press-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    gap: 70px;
    align-items: start;
}

.press-prose p {
    max-width: 730px;
    margin: 0 0 18px;
    color: var(--press-text);
    font-size: 16px;
    line-height: 1.8;
}

.press-prose .press-lead {
    color: #1f2937;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.65;
}

.press-quote {
    margin: 0;
    padding: 28px;
    border-top: 4px solid var(--press-gold);
    border-radius: 0 0 12px 12px;
    background: var(--press-primary-dark);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.14);
}

.press-quote blockquote {
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
}

.press-quote p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.press-text-link {
    color: var(--press-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.press-text-link:hover {
    text-decoration: underline;
}

.press-facts-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.6fr);
    gap: 30px;
    align-items: start;
}

.press-facts {
    margin: 0;
    border: 1px solid var(--press-line);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    background: var(--press-paper);
}

.press-facts div {
    min-height: 94px;
    padding: 19px 22px;
    border-bottom: 1px solid var(--press-line);
}

.press-facts div:nth-child(odd) {
    border-right: 1px solid var(--press-line);
}

.press-facts div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.press-facts dt {
    margin: 0 0 5px;
    color: var(--press-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.press-facts dd {
    margin: 0;
    color: var(--press-ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.press-contact-card {
    padding: 30px;
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(0, 167, 221, 0.08), transparent 55%),
        var(--press-primary-dark);
    box-shadow: 0 18px 45px rgba(0, 51, 102, 0.16);
    color: #fff;
}

.press-card-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #b8e8fa;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.press-contact-card h3 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 23px;
    line-height: 1.3;
}

.press-contact-card p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.press-contact-link {
    margin: 7px 0;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.press-contact-link:hover {
    color: var(--press-gold);
}

.press-contact-card address {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-style: normal;
    line-height: 1.7;
}

.press-boilerplate-section {
    border-bottom: 0;
}

.press-copy-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
}

.press-copy-card {
    padding: 28px;
    border: 1px solid var(--press-line);
    border-radius: 12px;
    background: var(--press-paper);
    box-shadow: 0 7px 22px rgba(15, 23, 42, 0.04);
}

.press-copy-card-head {
    margin-bottom: 20px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.press-copy-card-head span {
    display: block;
    color: var(--press-ink);
    font-size: 16px;
    font-weight: 700;
}

.press-copy-card-head small {
    display: block;
    margin-top: 3px;
    color: var(--press-muted);
    font-size: 11px;
}

.press-copy-card p {
    margin: 0;
    color: var(--press-text);
    font-size: 15px;
    line-height: 1.8;
}

.press-copy-button {
    min-height: 36px;
    padding: 7px 13px;
    border: 1px solid #bdd7eb;
    border-radius: 6px;
    background: #f3f9fd;
    color: var(--press-primary);
    cursor: pointer;
    font: 700 12px/1 "Inter", Arial, sans-serif;
    transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.press-copy-button:hover {
    border-color: var(--press-primary);
    background: var(--press-primary);
    color: #fff;
}

.press-copy-button.is-copied {
    border-color: #0f8a55;
    background: #0f8a55;
    color: #fff;
}

#assets {
    padding-inline: 32px;
    border: 1px solid #dce9f3;
    border-radius: 20px;
    background: linear-gradient(180deg, #f5faff 0%, #fff 45%);
}

.press-section-note {
    max-width: 750px;
    margin: -12px 0 30px;
    color: var(--press-muted);
    font-size: 14px;
}

.press-assets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.press-asset-card {
    border: 1px solid var(--press-line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.press-asset-preview {
    min-height: 245px;
    padding: 34px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(45deg, #f5f6f8 25%, transparent 25%),
        linear-gradient(-45deg, #f5f6f8 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f5f6f8 75%),
        linear-gradient(-45deg, transparent 75%, #f5f6f8 75%),
        #fff;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0;
    background-size: 16px 16px;
}

.press-asset-preview-dark {
    background: #15283a;
}

.press-asset-preview-anniversary {
    background: #edf6fc;
}

.press-asset-preview img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.press-asset-logo .press-asset-preview img {
    width: min(360px, 90%);
}

.press-asset-preview-anniversary img {
    max-height: 190px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.14);
}

.press-asset-meta {
    padding: 20px 22px;
    border-top: 1px solid var(--press-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.press-asset-meta h3 {
    margin: 0 0 3px;
    color: var(--press-ink);
    font-size: 15px;
}

.press-asset-meta p {
    margin: 0;
    color: var(--press-muted);
    font-size: 11px;
}

.press-asset-meta a {
    flex: 0 0 auto;
    color: var(--press-primary);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.press-asset-meta a:hover {
    text-decoration: underline;
}

.press-usage {
    margin-top: 24px;
    padding: 26px 28px;
    border: 1px solid var(--press-line);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    background: #fff;
}

.press-usage h3 {
    margin: 0 0 12px;
    color: var(--press-ink);
    font-size: 15px;
}

.press-usage ul {
    margin: 0;
    padding-left: 18px;
    color: var(--press-text);
    font-size: 13px;
    line-height: 1.7;
}

.press-usage .press-text-link {
    grid-column: 1 / -1;
}

.press-timeline {
    max-width: 900px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.press-timeline li {
    position: relative;
    min-height: 130px;
    padding: 0 0 42px 210px;
    display: grid;
}

.press-timeline li:not(:last-child)::after {
    position: absolute;
    top: 17px;
    bottom: -1px;
    left: 173px;
    width: 1px;
    background: #cfdde8;
    content: "";
}

.press-timeline li::before {
    position: absolute;
    z-index: 1;
    top: 7px;
    left: 166px;
    width: 15px;
    height: 15px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--press-primary);
    box-shadow: 0 0 0 1px #a9c5da;
    content: "";
}

.press-timeline time,
.press-timeline-date {
    position: absolute;
    top: 4px;
    left: 0;
    width: 140px;
    color: var(--press-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-align: right;
    text-transform: uppercase;
}

.press-timeline h3 {
    margin: 0 0 8px;
    color: var(--press-ink);
    font-size: 19px;
}

.press-timeline p {
    max-width: 650px;
    margin: 0;
    color: var(--press-text);
    font-size: 14px;
    line-height: 1.75;
}

.press-history-link {
    margin: 0 0 0 210px;
}

.press-history-link a {
    color: var(--press-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.press-history-link a:hover {
    text-decoration: underline;
}

.press-promotional {
    padding-block: 40px;
    border-bottom: 0;
}

.press-promotional details {
    border: 1px solid var(--press-line);
    border-radius: 12px;
    background: #fff;
}

.press-promotional summary {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--press-ink);
    cursor: pointer;
    list-style: none;
}

.press-promotional summary::-webkit-details-marker {
    display: none;
}

.press-promotional summary::after {
    width: 26px;
    height: 26px;
    border: 1px solid #cfdde8;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--press-primary);
    content: "+";
    font-size: 18px;
    font-weight: 500;
}

.press-promotional details[open] summary::after {
    content: "-";
}

.press-promotional summary span {
    display: flex;
    flex-direction: column;
}

.press-promotional summary strong {
    font-size: 16px;
}

.press-promotional summary small {
    margin-top: 3px;
    color: var(--press-muted);
    font-size: 12px;
    font-weight: 400;
}

.press-promotional-content {
    padding: 0 28px 28px;
    border-top: 1px solid var(--press-line);
}

.press-promotional-content > p {
    max-width: 760px;
    margin: 24px 0;
    color: var(--press-text);
    font-size: 13px;
}

.press-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.press-badge-grid article {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--press-line);
    border-radius: 9px;
    background: #f9fafb;
}

.press-badge-grid h3 {
    margin: 0 0 14px;
    font-size: 14px;
}

.press-badge-preview {
    min-height: 80px;
    margin-bottom: 14px;
    padding: 12px;
    display: grid;
    place-items: center;
    background: #fff;
}

.press-badge-preview img {
    max-width: 100%;
    height: auto;
}

.press-badge-grid pre {
    max-height: 110px;
    margin: 0 0 14px;
    padding: 12px;
    border-radius: 5px;
    overflow: auto;
    background: #1e293b;
    color: #dbeafe;
    font-size: 10px;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-all;
}

.press-cta {
    margin-top: 25px;
    padding: 44px 48px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background:
        radial-gradient(circle at 90% 0, rgba(0, 194, 255, 0.2), transparent 18rem),
        var(--press-primary-dark);
    color: #fff;
}

.press-cta .press-kicker {
    color: #9ee3fb;
}

.press-cta h2 {
    color: #fff;
    font-size: 31px;
}

.press-cta p {
    max-width: 680px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.press-button-light {
    flex: 0 0 auto;
    background: var(--press-gold);
    color: var(--press-primary-dark);
}

.press-button-light:hover {
    background: #fff;
    color: var(--press-primary-dark);
}

.press-copy-status {
    position: fixed;
    z-index: 10000;
    right: 20px;
    bottom: 20px;
    padding: 11px 16px;
    border-radius: 7px;
    background: #111827;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    color: #fff;
    font: 600 13px/1.3 "Inter", Arial, sans-serif;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.press-copy-status.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.press-page a:focus-visible,
.press-page button:focus-visible,
.press-page summary:focus-visible {
    outline: 3px solid rgba(0, 167, 221, 0.5);
    outline-offset: 3px;
}

@media (max-width: 980px) {
    .press-hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.7fr);
        gap: 35px;
    }

    .press-facts-layout {
        grid-template-columns: 1fr;
    }

    .press-contact-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
    }

    .press-contact-card .press-card-label,
    .press-contact-card h3,
    .press-contact-card p {
        grid-column: 1 / -1;
    }

    .press-contact-card address {
        grid-column: 2;
        grid-row: 4 / span 3;
        margin-top: 0;
        padding-top: 0;
        padding-left: 24px;
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    .press-badge-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .press-shell,
    .press-breadcrumb {
        width: min(100% - 28px, 1180px);
    }

    .press-breadcrumb {
        padding-block: 12px;
    }

    .press-hero-grid {
        min-height: 0;
        padding-block: 45px;
        grid-template-columns: 1fr;
    }

    .press-hero h1 {
        letter-spacing: -1.6px;
    }

    .press-hero-mark {
        min-height: 230px;
        padding: 24px;
        grid-template-columns: auto minmax(140px, 190px) auto;
        transform: none;
    }

    .press-hero-mark img {
        width: 100%;
    }

    .press-stats {
        margin-top: 18px;
        grid-template-columns: repeat(2, 1fr);
    }

    .press-stats article {
        min-height: 92px;
    }

    .press-stats article + article {
        border-left: 0;
    }

    .press-stats article:nth-child(even) {
        border-left: 1px solid var(--press-line);
    }

    .press-stats article:nth-child(n + 3) {
        border-top: 1px solid var(--press-line);
    }

    .press-section {
        padding-block: 52px;
    }

    .press-section-heading-row,
    .press-intro-grid {
        display: block;
    }

    .press-section-heading-row > a {
        margin-top: 18px;
    }

    .press-quote {
        margin-top: 30px;
    }

    .press-facts,
    .press-copy-grid,
    .press-assets,
    .press-usage {
        grid-template-columns: 1fr;
    }

    .press-facts div:nth-child(odd) {
        border-right: 0;
    }

    .press-facts div:nth-last-child(2) {
        border-bottom: 1px solid var(--press-line);
    }

    .press-contact-card {
        display: block;
    }

    .press-contact-card address {
        margin-top: 24px;
        padding-top: 20px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        border-left: 0;
    }

    #assets {
        padding-inline: 18px;
        border-radius: 14px;
    }

    .press-asset-preview {
        min-height: 210px;
    }

    .press-usage .press-text-link {
        grid-column: auto;
    }

    .press-timeline li {
        min-height: 0;
        padding: 0 0 42px 34px;
    }

    .press-timeline li:not(:last-child)::after {
        left: 7px;
    }

    .press-timeline li::before {
        left: 0;
    }

    .press-timeline time,
    .press-timeline-date {
        position: static;
        width: auto;
        margin-bottom: 7px;
        text-align: left;
    }

    .press-history-link {
        margin-left: 34px;
    }

    .press-cta {
        padding: 34px 28px;
        display: block;
    }

    .press-cta .press-button {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .press-actions {
        display: grid;
    }

    .press-button {
        width: 100%;
    }

    .press-hero-mark {
        grid-template-columns: 1fr;
    }

    .press-stats strong {
        font-size: 23px;
    }

    .press-stats span {
        font-size: 11px;
    }

    .press-copy-card,
    .press-contact-card {
        padding: 22px;
    }

    .press-copy-card-head {
        gap: 10px;
    }

    .press-asset-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .press-promotional summary,
    .press-promotional-content {
        padding-inline: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .press-page *,
    .press-page *::before,
    .press-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
