/* (c) Haxter Corporation | Shareholders | H27-HX26-MS */

.hxsh_page {
    --hxsh_blue: #0067b8;
    --hxsh_blue_dark: #005da6;
    --hxsh_navy: #002060;
    --hxsh_navy_dark: #07162b;
    --hxsh_text: #171717;
    --hxsh_muted: #62666d;
    --hxsh_border: #e4e6e8;
    --hxsh_soft: #f6f7f8;
    --hxsh_surface: #ffffff;
    --hxsh_success: #107c10;
    --hxsh_danger: #b42318;

    margin: 0;
    background: #ffffff;
    color: var(--hxsh_text);
    font-family: "Segoe UI", "Elms Sans", Montserrat, Arial, Helvetica, sans-serif;
}

.hxsh_page * {
    box-sizing: border-box;
}

.hxsh_page a {
    color: inherit;
}

.hxsh_wrap {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

/* SHAREHOLDERS SUB-HEADER */

.hxsh_shareholder_nav {
    background: var(--hxsh_navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hxsh_shareholder_nav_inner {
    width: min(1320px, calc(100% - 80px));
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    gap: 34px;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
}

.hxsh_shareholder_nav_inner::-webkit-scrollbar {
    height: 0;
}

.hxsh_shareholder_nav a {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.hxsh_shareholder_nav a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* FEATURE */

.hxsh_feature {
    background:
        radial-gradient(circle at 88% 18%, rgba(0, 103, 184, 0.08), transparent 24%),
        radial-gradient(circle at 92% 78%, rgba(7, 22, 43, 0.055), transparent 30%),
        #ffffff;
    border-bottom: 1px solid var(--hxsh_border);
}

.hxsh_feature_grid {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
    gap: 72px;
    align-items: center;
    padding: 76px 0;
}

.hxsh_feature_content {
    max-width: 900px;
}

.hxsh_label {
    margin: 0 0 16px;
    color: var(--hxsh_blue);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.hxsh_feature h1 {
    margin: 0;
    color: var(--hxsh_text);
    font-size: clamp(54px, 5.8vw, 86px);
    line-height: 1.02;
    letter-spacing: -0.065em;
    font-weight: 600;
}

.hxsh_feature h1 span {
    display: block;
    color: var(--hxsh_blue);
}

.hxsh_feature_date {
    margin: 20px 0 0;
    color: var(--hxsh_muted);
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
}

.hxsh_feature_text {
    max-width: 840px;
    margin: 26px 0 0;
    color: var(--hxsh_muted);
    font-size: 18px;
    line-height: 1.65;
}

.hxsh_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    margin-top: 34px;
}

.hxsh_btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: var(--hxsh_blue);
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
}

.hxsh_btn:hover {
    background: var(--hxsh_blue_dark);
    color: #ffffff;
}

.hxsh_link {
    color: var(--hxsh_blue);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
}

.hxsh_link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hxsh_feature_panel {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--hxsh_border);
    box-shadow: 0 22px 56px rgba(7, 22, 43, 0.08);
}

.hxsh_feature_panel span {
    display: block;
    margin-bottom: 14px;
    color: var(--hxsh_blue);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.hxsh_feature_panel strong {
    display: block;
    color: var(--hxsh_text);
    font-size: 28px;
    line-height: 1.14;
    letter-spacing: -0.035em;
    font-weight: 600;
}

.hxsh_feature_panel p {
    margin: 16px 0 0;
    color: var(--hxsh_muted);
    font-size: 15px;
    line-height: 1.6;
}

/* CORPORATE ACTION */

.hxsh_corporate_action {
    background: var(--hxsh_navy);
    color: #ffffff;
}

.hxsh_corporate_action_inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.hxsh_corporate_action span {
    color: #9fc8ee;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.hxsh_corporate_action p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 650;
}

.hxsh_corporate_action a {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.hxsh_corporate_action a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* SECTIONS */

.hxsh_section {
    padding: 82px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--hxsh_border);
}

.hxsh_section_soft {
    background: var(--hxsh_soft);
}

.hxsh_section_head {
    max-width: 980px;
    margin-bottom: 42px;
}

.hxsh_section_head h2,
.hxsh_panel_head h2,
.hxsh_support_panel h2 {
    margin: 0;
    color: var(--hxsh_text);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.09;
    letter-spacing: -0.045em;
    font-weight: 600;
}

.hxsh_section_head p:not(.hxsh_label),
.hxsh_support_panel p {
    margin: 18px 0 0;
    color: var(--hxsh_muted);
    font-size: 17px;
    line-height: 1.62;
}

/* MARKET OVERVIEW */

.hxsh_market_grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.72fr);
    gap: 42px;
    align-items: stretch;
}

.hxsh_stock_panel,
.hxsh_report_panel {
    padding: 36px;
    background: #ffffff;
    border: 1px solid var(--hxsh_border);
}

.hxsh_panel_head {
    margin-bottom: 28px;
}

.hxsh_panel_head h2 span {
    display: block;
    color: var(--hxsh_blue);
}

.hxsh_stock_price {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 28px 0;
    border-top: 1px solid var(--hxsh_border);
    border-bottom: 1px solid var(--hxsh_border);
}

.hxsh_stock_price strong {
    display: block;
    color: var(--hxsh_blue);
    font-size: clamp(54px, 6.8vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.072em;
    font-weight: 600;
}

.hxsh_stock_price span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    color: var(--hxsh_success);
    background: #eef8ee;
    font-size: 15px;
    line-height: 1;
    font-weight: 750;
}

.hxsh_stock_price span.hxstock_change_negative,
.hxsh_stock_price span.hxsh_change_negative {
    color: var(--hxsh_danger);
    background: #fff3f1;
}

.hxsh_stock_metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
    border-top: 1px solid var(--hxsh_border);
    border-left: 1px solid var(--hxsh_border);
}

.hxsh_stock_metrics div {
    min-height: 82px;
    padding: 18px;
    background: #ffffff;
    border-right: 1px solid var(--hxsh_border);
    border-bottom: 1px solid var(--hxsh_border);
}

.hxsh_stock_metrics span {
    display: block;
    margin-bottom: 10px;
    color: var(--hxsh_muted);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.hxsh_stock_metrics strong {
    display: block;
    color: var(--hxsh_text);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.hxsh_stock_note {
    margin: 24px 0 0;
    color: var(--hxsh_muted);
    font-size: 14px;
    line-height: 1.58;
}

.hxsh_report_links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.hxsh_report_links a {
    color: var(--hxsh_blue);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
}

.hxsh_report_links a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hxsh_report_links a[aria-disabled="true"] {
    color: var(--hxsh_muted);
    cursor: not-allowed;
}

.hxsh_chart_panel {
    height: 360px;
    padding: 20px;
    background: var(--hxsh_soft);
    border: 1px solid var(--hxsh_border);
}

.hxsh_chart_panel canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* PUBLIC ROUTES */

.hxsh_route_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--hxsh_border);
    border-left: 1px solid var(--hxsh_border);
}

.hxsh_route_card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    background: #ffffff;
    color: var(--hxsh_text);
    text-decoration: none;
    border-right: 1px solid var(--hxsh_border);
    border-bottom: 1px solid var(--hxsh_border);
}

.hxsh_route_card strong {
    display: block;
    color: var(--hxsh_text);
    font-size: 22px;
    line-height: 1.16;
    letter-spacing: -0.034em;
    font-weight: 600;
}

.hxsh_route_card p {
    margin: 14px 0 0;
    color: var(--hxsh_muted);
    font-size: 15px;
    line-height: 1.58;
}

.hxsh_route_card span {
    display: block;
    margin-top: auto;
    padding-top: 22px;
    color: var(--hxsh_blue);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.hxsh_route_card:hover strong,
.hxsh_route_card:hover span {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ANNOUNCEMENTS */

.hxsh_announcement_list {
    display: grid;
    border-top: 1px solid var(--hxsh_border);
    border-left: 1px solid var(--hxsh_border);
}

.hxsh_announcement {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 170px;
    gap: 26px;
    align-items: start;
    padding: 28px;
    background: #ffffff;
    border-right: 1px solid var(--hxsh_border);
    border-bottom: 1px solid var(--hxsh_border);
}

.hxsh_announcement > span {
    color: var(--hxsh_muted);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 650;
}

.hxsh_announcement > p:first-of-type {
    margin: 0;
    color: var(--hxsh_blue);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hxsh_announcement h3 {
    grid-column: 2 / 3;
    margin: 26px 0 0;
    color: var(--hxsh_text);
    font-size: clamp(22px, 2.5vw, 32px);
    line-height: 1.16;
    letter-spacing: -0.036em;
    font-weight: 600;
}

.hxsh_announcement > p:last-of-type {
    grid-column: 2 / 3;
    margin: 14px 0 0;
    color: var(--hxsh_muted);
    font-size: 15px;
    line-height: 1.62;
}

.hxsh_announcement a {
    grid-column: 3 / 4;
    grid-row: 1 / 5;
    align-self: start;
    justify-self: end;
    color: var(--hxsh_blue);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    text-decoration: none;
}

.hxsh_announcement a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* SUPPORT */

.hxsh_support_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
}

.hxsh_support_panel {
    min-height: 260px;
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--hxsh_border);
}

.hxsh_support_panel strong {
    display: block;
    margin-top: 22px;
    color: var(--hxsh_text);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
}

.hxsh_support_panel a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--hxsh_blue);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.hxsh_support_panel a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ACCESSIBILITY */

.hxsh_page a:focus-visible,
.hxsh_page canvas:focus-visible {
    outline: 2px solid var(--hxsh_blue);
    outline-offset: 3px;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .hxsh_feature_grid,
    .hxsh_market_grid,
    .hxsh_support_grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hxsh_feature_panel {
        max-width: 520px;
    }

    .hxsh_route_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hxsh_announcement {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .hxsh_announcement a {
        grid-column: 2 / 3;
        grid-row: auto;
        justify-self: start;
        margin-top: 16px;
    }
}

@media (max-width: 920px) {
    .hxsh_shareholder_nav_inner,
    .hxsh_wrap {
        width: min(100% - 32px, 1320px);
    }

    .hxsh_shareholder_nav_inner {
        justify-content: flex-start;
        min-height: 64px;
    }

    .hxsh_feature_grid {
        min-height: auto;
        padding: 64px 0 66px;
    }

    .hxsh_corporate_action_inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 22px 0;
    }

    .hxsh_stock_price {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hxsh_route_grid {
        grid-template-columns: 1fr;
    }

    .hxsh_announcement {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hxsh_announcement h3,
    .hxsh_announcement > p:last-of-type,
    .hxsh_announcement a {
        grid-column: auto;
    }
}

@media (max-width: 820px) {
    .hxsh_feature h1,
    .hxsh_section_head h2,
    .hxsh_panel_head h2,
    .hxsh_support_panel h2,
    .hxsh_route_card strong,
    .hxsh_announcement h3,
    .hxsh_stock_price strong {
        font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-weight: 500;
        letter-spacing: -0.028em;
        text-wrap: balance;
    }

    .hxsh_feature h1 {
        font-size: clamp(42px, 11vw, 56px);
        line-height: 1.05;
    }

    .hxsh_feature_text,
    .hxsh_section_head p:not(.hxsh_label),
    .hxsh_support_panel p {
        font-size: 17px;
        line-height: 1.68;
        letter-spacing: -0.01em;
    }

    .hxsh_stock_panel,
    .hxsh_report_panel,
    .hxsh_support_panel {
        padding: 26px;
    }

    .hxsh_stock_metrics {
        grid-template-columns: 1fr;
    }

    .hxsh_chart_panel {
        height: 320px;
    }

    .hxsh_actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hxsh_btn,
    .hxsh_link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .hxsh_feature_grid {
        padding: 52px 0;
    }

    .hxsh_section {
        padding: 64px 0;
    }

    .hxsh_feature_panel,
    .hxsh_stock_panel,
    .hxsh_report_panel,
    .hxsh_support_panel {
        padding: 22px;
    }

    .hxsh_stock_price strong {
        font-size: clamp(46px, 14vw, 62px);
    }

    .hxsh_chart_panel {
        height: 280px;
        padding: 16px;
    }
}