:root {
    --mpact-green: #a9ca4c;
    --mpact-green-bg: #a7cc6c;
    --mpact-light-green: #cfe09b;
    --mpact-pale-green: #eef5e1;
    --mpact-teal: #417c6c;
    --mpact-blue: #5996c5;
    --mpact-purple: #a65c9e;
    --mpact-gray: #a3a3a3;
    --mpact-ink: #202020;
    --mpact-muted: #5e625d;
    --content-width: 1200px;
    --wide-width: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--mpact-ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}

.site-shell {
    min-height: 100vh;
}

body,
button,
input {
    letter-spacing: 0;
}

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

a {
    color: inherit;
}

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

h1,
h2,
h3 {
    font-weight: 400;
    line-height: 1.2;
}

h1:focus {
    outline: none;
}

h1 {
    font-size: 3.8rem;
}

h2 {
    font-size: 2.3rem;
}

h3 {
    font-size: 1.18rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
label:focus-visible {
    outline: 3px solid var(--mpact-blue);
    outline-offset: 3px;
}

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

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    height: 96px;
    background: rgba(17, 23, 15, 0.48);
    color: #ffffff;
    transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
    color: #222222;
}

.site-header-inner {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    width: min(100%, var(--wide-width));
    height: 100%;
    margin: 0 auto;
    padding: 8px 26px;
}

.site-logo {
    display: inline-flex;
    width: 170px;
    color: #ffffff;
}

.site-logo img {
    width: 100%;
    height: 76px;
    object-fit: contain;
    filter: invert(1) hue-rotate(180deg);
}

.site-header.is-scrolled .site-logo img {
    filter: none;
}

.header-navigation {
    align-self: stretch;
    display: grid;
    align-content: center;
    gap: 12px;
    min-width: 0;
}

.header-utility,
.desktop-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-utility {
    gap: 24px;
    color: var(--mpact-green);
    font-size: 0.82rem;
    font-weight: 700;
}

.desktop-navigation {
    gap: 34px;
    font-size: 1.06rem;
    font-weight: 700;
}

.header-utility a,
.desktop-navigation a {
    text-decoration: none;
    white-space: nowrap;
}

.header-utility a:hover,
.desktop-navigation a:hover {
    color: var(--mpact-green);
}

.header-search {
    position: relative;
    width: 20px;
    height: 20px;
}

.header-search span {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 13px;
    height: 13px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.header-search span::after {
    position: absolute;
    right: -7px;
    bottom: -5px;
    width: 8px;
    height: 3px;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
    transform-origin: left center;
}

.mobile-navigation,
.header-social-links {
    display: none;
}

.home-hero {
    position: relative;
    height: 660px;
    overflow: hidden;
    background: #253228;
}

.home-hero > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    display: flex;
    align-items: center;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease;
}

.hero-slide::before {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.27);
    content: "";
}

.hero-slide::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 52%;
    background: rgba(48, 91, 23, 0.5);
    content: "";
    clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    width: min(100%, var(--wide-width));
    margin: 0 auto;
    padding: 80px 64px 0;
}

.hero-slide-content p,
.hero-slide-content strong {
    display: block;
    max-width: 650px;
}

.hero-slide-content p {
    margin-bottom: 10px;
    font-size: 3.55rem;
    font-weight: 300;
    line-height: 1;
}

.hero-slide-content strong {
    font-size: 1.42rem;
    line-height: 1.25;
}

#hero-slide-1:checked ~ .hero-slides .hero-slide:nth-child(1),
#hero-slide-2:checked ~ .hero-slides .hero-slide:nth-child(2),
#hero-slide-3:checked ~ .hero-slides .hero-slide:nth-child(3),
#hero-slide-4:checked ~ .hero-slides .hero-slide:nth-child(4),
#hero-slide-5:checked ~ .hero-slides .hero-slide:nth-child(5),
#hero-slide-6:checked ~ .hero-slides .hero-slide:nth-child(6) {
    opacity: 1;
    pointer-events: auto;
}

.hero-pagination {
    position: absolute;
    z-index: 3;
    right: max(52px, calc((100vw - var(--wide-width)) / 2 + 52px));
    bottom: 34px;
    display: flex;
    gap: 10px;
}

.hero-pagination label {
    display: block;
    width: 32px;
    height: 32px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 140ms ease, transform 140ms ease;
}

.hero-pagination label:hover {
    transform: scale(1.08);
}

.hero-pagination label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

#hero-slide-1:checked ~ .hero-pagination label[for="hero-slide-1"],
#hero-slide-2:checked ~ .hero-pagination label[for="hero-slide-2"],
#hero-slide-3:checked ~ .hero-pagination label[for="hero-slide-3"],
#hero-slide-4:checked ~ .hero-pagination label[for="hero-slide-4"],
#hero-slide-5:checked ~ .hero-pagination label[for="hero-slide-5"],
#hero-slide-6:checked ~ .hero-pagination label[for="hero-slide-6"] {
    background: #ffffff;
}

.hero-social-links {
    position: absolute;
    z-index: 3;
    top: 280px;
    right: 26px;
    display: grid;
    gap: 12px;
}

.hero-social-links a,
.header-social-links a,
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--mpact-green);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
}

.hero-social-links a:hover,
.header-social-links a:hover,
.social-links a:hover {
    background: #ffffff;
    color: var(--mpact-teal);
}

.hero-social-links svg,
.header-social-links svg,
.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.market-ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 38px;
    padding: 8px 24px;
    background: var(--mpact-green);
    color: #ffffff;
    font-size: 0.8rem;
}

.market-ticker p {
    margin: 0;
}

.market-ticker p + p::before {
    margin: 0 22px;
    content: "•";
}

.home-section {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding: 62px 24px;
}

.home-section h2,
.investor-section h2 {
    margin-bottom: 18px;
    color: var(--mpact-green);
    font-size: 1.62rem;
}

.investor-lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 44px;
}

.report-card,
.information-card {
    border: 1px solid var(--mpact-green-bg);
    border-radius: 7px;
    background: #ffffff;
}

.report-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
    min-height: 380px;
    padding: 20px;
}

.report-card img {
    align-self: center;
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.report-card time,
.information-card time {
    display: block;
    margin-bottom: 8px;
    color: var(--mpact-green);
    font-weight: 700;
}

.document-list,
.information-card ul {
    margin: 0;
    padding-left: 20px;
}

.document-list li,
.information-card li {
    margin-bottom: 8px;
}

.document-list a,
.information-card a {
    color: var(--mpact-ink);
    font-weight: 700;
    text-decoration: none;
}

.document-list a:hover,
.information-card a:hover {
    color: var(--mpact-teal);
}

.information-card {
    min-height: 260px;
    padding: 20px;
}

.information-card h3 {
    margin-bottom: 10px;
    font-weight: 700;
}

.information-card p {
    color: var(--mpact-muted);
}

.sens-card {
    min-height: 380px;
}

.section-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 18px;
    color: var(--mpact-teal);
    font-weight: 700;
    text-decoration: none;
}

.section-link span:not(.visually-hidden) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--mpact-teal);
    color: #ffffff;
    font-size: 0.68rem;
}

.investor-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
    margin-top: 52px;
}

.operations-section {
    width: 100%;
    max-width: none;
    padding-right: max(24px, calc((100vw - var(--content-width)) / 2 + 24px));
    padding-left: max(24px, calc((100vw - var(--content-width)) / 2 + 24px));
    background: var(--mpact-pale-green);
}

.home-section-heading {
    max-width: 840px;
    margin-bottom: 34px;
}

.home-section-heading p {
    color: var(--mpact-muted);
    font-size: 1.05rem;
}

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

.operation-card {
    display: grid;
    grid-template-rows: 190px 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--mpact-light-green);
    border-radius: 7px;
    background: #ffffff;
    color: var(--mpact-ink);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.operation-card:hover {
    box-shadow: 0 12px 28px rgba(46, 76, 51, 0.16);
    transform: translateY(-3px);
}

.operation-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.operation-card > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.operation-card h3 {
    margin-bottom: 9px;
    color: var(--mpact-green);
    font-size: 1.32rem;
}

.operation-card p {
    color: var(--mpact-muted);
}

.operation-card > div > span {
    margin-top: auto;
    color: var(--mpact-teal);
    font-weight: 700;
}

.operation-card b,
.story-card b {
    font-size: 0.8rem;
}

.awards-section {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    background: #151a17;
    color: #ffffff;
}

.awards-section::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.36);
    content: "";
}

.awards-section > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awards-copy {
    position: relative;
    z-index: 2;
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding: 100px 24px;
}

.awards-copy p {
    margin-bottom: 12px;
    color: var(--mpact-green);
    font-weight: 700;
    text-transform: uppercase;
}

.awards-copy h2 {
    max-width: 540px;
    margin-bottom: 34px;
    color: #ffffff;
    font-size: 2.8rem;
}

.awards-copy nav {
    display: flex;
    gap: 10px;
}

.awards-copy a {
    min-width: 62px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 5px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.awards-copy a:hover {
    border-color: var(--mpact-green);
    background: var(--mpact-green);
}

.sustainability-section {
    padding: 64px max(24px, calc((100vw - var(--content-width)) / 2 + 24px));
    background: #f2f6fb;
}

.sustainability-header,
.stories-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.sustainability-header h2,
.stories-header h2 {
    margin-bottom: 8px;
    color: var(--mpact-green);
    font-size: 1.62rem;
}

.sustainability-header h3 {
    margin: 0;
    color: var(--mpact-teal);
    font-size: 1.05rem;
    font-weight: 700;
}

.sustainability-header .section-link,
.stories-header .section-link {
    margin: 0;
}

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

.sustainability-stat {
    min-width: 0;
    min-height: 250px;
    padding: 26px;
    border: 1px solid #d3deee;
    border-radius: 7px;
    background: #ffffff;
    text-align: center;
}

.sustainability-stat img {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.sustainability-stat p {
    min-height: 44px;
    margin-bottom: 10px;
    color: var(--mpact-muted);
    font-weight: 700;
}

.sustainability-stat strong,
.sustainability-stat span {
    display: block;
}

.sustainability-stat strong {
    margin-bottom: 7px;
    color: var(--mpact-teal);
    font-size: 1.75rem;
}

.sustainability-stat span {
    color: var(--mpact-muted);
    font-size: 0.86rem;
}

.stories-section {
    width: 100%;
    max-width: none;
    padding-right: max(24px, calc((100vw - var(--content-width)) / 2 + 24px));
    padding-left: max(24px, calc((100vw - var(--content-width)) / 2 + 24px));
}

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

.story-card {
    display: grid;
    grid-template-rows: 190px 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--mpact-light-green);
    border-radius: 7px;
    background: #ffffff;
}

.story-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.story-card > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.story-card h3 {
    color: var(--mpact-green);
    font-weight: 700;
}

.story-card p {
    color: var(--mpact-muted);
    font-size: 0.92rem;
}

.story-card a {
    margin-top: auto;
    color: var(--mpact-teal);
    font-weight: 700;
    text-decoration: none;
}

.site-footer {
    background: #000000;
    color: #ffffff;
}

.site-footer-main {
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 0.9fr 0.9fr;
    gap: 54px;
    width: min(100%, var(--wide-width));
    margin: 0 auto;
    padding: 56px 28px 66px;
}

.site-footer h2 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.site-footer p,
.site-footer a,
.site-footer label {
    color: #d0d0d0;
}

.footer-wordmark {
    display: inline-flex;
    width: 190px;
    color: #ffffff;
}

.footer-wordmark img {
    width: 100%;
    height: 86px;
    object-fit: contain;
    filter: invert(1) hue-rotate(180deg);
}

.site-footer-brand > p {
    margin: 10px 0 20px;
}

.site-footer-links {
    display: grid;
    gap: 9px;
}

.site-footer-links a {
    position: relative;
    padding-left: 18px;
    text-decoration: none;
}

.site-footer-links a::before {
    position: absolute;
    left: 0;
    color: var(--mpact-green);
    content: ">";
}

.site-footer a:hover {
    color: var(--mpact-green);
}

.site-footer-contact {
    display: grid;
    align-content: start;
    gap: 34px;
}

.site-footer-contact p {
    line-height: 1.55;
}

.social-links {
    display: flex;
    gap: 12px;
}

.site-footer-subscribe form {
    display: grid;
    gap: 7px;
}

.site-footer-subscribe label:not(.privacy-check) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.site-footer-subscribe input[type="text"],
.site-footer-subscribe input[type="email"] {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    border: 0;
    border-radius: 0;
    background: #a3a3a3;
    color: #111111;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 5px 0;
    font-size: 0.83rem;
}

.privacy-check input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.site-footer-subscribe button {
    min-height: 34px;
    border: 0;
    border-radius: 17px;
    background: var(--mpact-green);
    color: #ffffff;
    cursor: pointer;
    font: inherit;
}

.site-footer-subscribe button:hover {
    background: var(--mpact-teal);
}

.footer-subscribe-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    width: 100%;
    margin-top: 8px;
    border-radius: 18px;
    background: var(--mpact-green);
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none;
}

.footer-subscribe-link:hover {
    background: var(--mpact-teal);
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(3, 62px);
    gap: 18px;
}

.accreditation-grid img {
    width: 62px;
    height: 52px;
    object-fit: contain;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    min-height: 54px;
    padding: 14px 24px;
    background: var(--mpact-gray);
}

.footer-legal a {
    color: #111111;
    text-decoration: none;
}

.division-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    align-items: center;
    gap: 64px;
    min-height: 650px;
    padding: 150px max(28px, calc((100vw - var(--content-width)) / 2 + 28px)) 76px;
    background: var(--mpact-teal);
    color: #ffffff;
}

.division-hero-copy {
    max-width: 720px;
}

.division-hero h1 {
    margin-bottom: 18px;
}

.division-hero-copy p:not(.eyebrow) {
    color: #f0f5f1;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--mpact-green);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.lead {
    font-size: 1.22rem;
}

.division-hero-media img {
    width: 100%;
    height: 480px;
    border-radius: 7px;
    object-fit: cover;
}

.hero-actions {
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
}

.button-primary {
    background: var(--mpact-green);
    color: #ffffff;
}

.button-dark {
    background: var(--mpact-teal);
    color: #ffffff;
}

.detail-band,
.contact-band,
.division-source-band {
    padding: 64px max(24px, calc((100vw - var(--content-width)) / 2 + 24px));
}

.detail-band {
    background: #ffffff;
}

.gallery-band {
    background: var(--mpact-pale-green);
}

.news-band {
    background: #f2f6fb;
}

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

.section-heading h2 {
    color: var(--mpact-green);
}

.detail-grid,
.gallery-grid,
.news-grid {
    display: grid;
    gap: 18px;
}

.detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid,
.news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card,
.gallery-card,
.news-card {
    border: 1px solid var(--mpact-light-green);
    border-radius: 7px;
    background: #ffffff;
}

.detail-card,
.news-card {
    padding: 22px;
}

.detail-card h3,
.gallery-card h3,
.news-card h3 {
    color: var(--mpact-teal);
    font-weight: 700;
}

.detail-card p,
.gallery-card p,
.news-card p,
.contact-panel p,
.division-source-band p {
    color: var(--mpact-muted);
}

.gallery-card {
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.gallery-card > div {
    padding: 20px;
}

.news-card {
    min-height: 260px;
}

.news-card > span {
    display: block;
    margin-bottom: 10px;
    color: var(--mpact-green);
    font-weight: 700;
}

.contact-band {
    background: var(--mpact-teal);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    align-items: center;
    gap: 60px;
    max-width: var(--content-width);
    color: #ffffff;
}

.contact-panel h2,
.contact-panel p {
    color: #ffffff;
}

.contact-list {
    display: grid;
    gap: 10px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
}

.division-source-band {
    background: #ebe0ef;
}

.division-source-band h2 {
    color: var(--mpact-purple);
}

.policy-hero {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 500px;
    padding: 156px 24px 70px;
    background: var(--mpact-teal);
    color: #ffffff;
    text-align: center;
}

.policy-hero h1 {
    max-width: 920px;
}

.policy-hero .lead {
    max-width: 820px;
}

.policy-date {
    font-weight: 700;
}

.policy-content {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 64px 24px;
    background: #f2f6fb;
}

.policy-section {
    width: 100%;
    max-width: 1080px;
    padding: 28px;
    border: 1px solid #d3deee;
    border-radius: 7px;
    background: #ffffff;
}

.policy-section h2 {
    color: var(--mpact-teal);
    font-size: 1.55rem;
}

.policy-section p,
.policy-section li {
    color: var(--mpact-muted);
}

.policy-section a {
    color: var(--mpact-teal);
    font-weight: 700;
}

.message-page {
    min-height: 72vh;
    padding: 170px max(24px, calc((100vw - var(--content-width)) / 2 + 24px)) 80px;
}

.message-page p {
    max-width: 680px;
    color: var(--mpact-muted);
}

.request-id {
    padding: 0 max(24px, calc((100vw - var(--content-width)) / 2 + 24px)) 60px;
}

.blazor-error-boundary {
    margin: 120px 24px 24px;
    padding: 16px;
    border-radius: 7px;
    background: #b32121;
    color: #ffffff;
}

.mirrored-page {
    min-height: 70vh;
    overflow: hidden;
    background: #ffffff;
}

.mirrored-page > article > header,
.mirrored-page > header {
    position: relative;
    min-height: 420px;
    background: var(--mpact-teal);
}

.mirrored-page > article > header > .wp-block-post-featured-image,
.mirrored-page > header > .wp-block-post-featured-image {
    height: 520px;
    margin: 0;
}

.mirrored-page > article > header > .wp-block-post-featured-image img,
.mirrored-page > header > .wp-block-post-featured-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.mirrored-page .purple-patch {
    position: absolute;
    bottom: 54px;
    left: max(24px, calc((100vw - var(--content-width)) / 2 + 24px));
    width: min(560px, calc(100% - 48px));
    padding: 30px 36px;
    border-radius: 7px;
    background: rgba(166, 92, 158, 0.94);
    color: #ffffff;
}

.mirrored-page .purple-patch h1,
.mirrored-page .purple-patch h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 2.5rem;
}

.mirrored-page .purple-patch p {
    margin: 0;
    font-size: 1.08rem;
}

.mirrored-page .ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
    padding: 10px 24px;
    background: #111111 !important;
    color: #ffffff !important;
}

.mirrored-page .ticker p {
    margin: 0;
}

.mirrored-page .ticker p + p::before {
    margin-right: 18px;
    color: var(--mpact-green);
    content: "|";
}

.mirrored-page .yoast-breadcrumbs {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding: 22px 24px 0;
    color: var(--mpact-muted);
    font-size: 0.88rem;
}

.mirrored-page .yoast-breadcrumbs a {
    color: var(--mpact-teal);
    text-decoration: none;
}

.mirrored-page .entry-content,
.mirrored-page .wp-block-query,
.mirrored-page > article > section,
.mirrored-page > section {
    width: min(100%, var(--content-width));
    margin-right: auto;
    margin-left: auto;
    padding: 52px 24px;
}

.mirrored-page .entry-content > :first-child {
    margin-top: 0;
}

.mirrored-page .entry-content > p:first-child,
.mirrored-page .has-medium-font-size {
    color: var(--mpact-teal);
    font-size: 1.2rem;
}

.mirrored-page h1,
.mirrored-page h2,
.mirrored-page h3,
.mirrored-page h4 {
    overflow-wrap: anywhere;
}

.mirrored-page h2 {
    color: var(--mpact-teal);
}

.mirrored-page h3,
.mirrored-page h4 {
    color: var(--mpact-green);
}

.mirrored-page h4 {
    font-size: 1rem;
}

.mirrored-page p,
.mirrored-page li,
.mirrored-page td,
.mirrored-page th {
    line-height: 1.55;
}

.mirrored-page a:not(.wp-block-button__link) {
    color: var(--mpact-teal);
    text-underline-offset: 3px;
}

.mirrored-page figure {
    margin: 0;
}

.mirrored-page figure img {
    width: 100%;
    height: auto;
}

.mirrored-page .alignwide {
    width: min(100%, var(--wide-width));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}

.mirrored-page .alignfull {
    width: 100%;
    max-width: none;
}

.mirrored-page .wp-block-columns {
    display: flex;
    align-items: stretch;
    gap: 28px;
    margin: 28px 0;
}

.mirrored-page .wp-block-column {
    flex: 1 1 0;
    min-width: 0;
}

.mirrored-page .wp-block-cover {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 440px;
    overflow: hidden;
    border-radius: 7px;
}

.mirrored-page .wp-block-cover__image-background,
.mirrored-page .wp-block-cover__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mirrored-page .wp-block-cover__image-background {
    object-fit: cover;
}

.mirrored-page .wp-block-cover__background {
    z-index: 1;
    opacity: 0.35;
}

.mirrored-page .wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 34px;
}

.mirrored-page .wp-block-post-template,
.mirrored-page .wp-block-gallery,
.mirrored-page .wp-block-latest-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 0;
    list-style: none;
}

.mirrored-page .wp-block-post-template > li,
.mirrored-page .wp-block-latest-posts > li {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--mpact-light-green);
    border-radius: 7px;
    background: #ffffff;
}

.mirrored-page .wp-block-post-template > li > :not(figure),
.mirrored-page .wp-block-latest-posts > li > :not(figure) {
    margin-right: 20px;
    margin-left: 20px;
}

.mirrored-page .wp-block-post-template figure img,
.mirrored-page .wp-block-latest-posts figure img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.mirrored-page .yotu-videos > ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mirrored-page .yotu-videos > ul > li {
    display: block;
    width: 100% !important;
    min-width: 0;
    margin: 0;
}

.mirrored-page .yotu-video {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid #d7ddd5;
    border-radius: 7px;
    background: #ffffff;
    color: var(--mpact-teal);
    text-decoration: none;
}

.mirrored-page .yotu-video-thumb-wrp {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e8ede7;
}

.mirrored-page .yotu-video-thumb-wrp > div {
    width: 100%;
    height: 100%;
}

.mirrored-page .yotu-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mirrored-page .yotu-video-title {
    margin: 0;
    padding: 16px 18px 20px;
    font-size: 1.05rem;
    font-weight: 700;
}

.mirrored-page .wp-block-post-title {
    margin-top: 18px;
}

.mirrored-page .wp-block-read-more {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}

.mirrored-page .wp-block-button__link,
.mirrored-page .wp-element-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 5px;
    background: var(--mpact-green);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.mirrored-page .wp-block-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 12px 0;
    padding: 14px 18px;
    border-bottom: 1px solid #d7ddd5;
}

.mirrored-page .wp-block-file__button {
    flex: 0 0 auto;
}

.mirrored-page table {
    width: 100%;
    border-collapse: collapse;
}

.mirrored-page th,
.mirrored-page td {
    padding: 12px;
    border: 1px solid #d7ddd5;
    text-align: left;
    vertical-align: top;
}

.mirrored-page th {
    background: var(--mpact-pale-green);
    color: var(--mpact-teal);
}

.mirrored-page iframe,
.mirrored-page video {
    width: 100%;
    max-width: 100%;
    border: 0;
    aspect-ratio: 16 / 9;
}

.mirror-local-video {
    margin: 0;
}

.mirror-local-video figcaption {
    margin-top: 8px;
    color: var(--mpact-muted);
    font-size: 0.9rem;
}

.mirror-market-feed,
.mirror-market-chart {
    width: 100%;
    margin: 24px 0;
    padding: 24px 0;
    border-top: 1px solid #cfd8cf;
    border-bottom: 1px solid #cfd8cf;
}

.mirror-market-feed > h3,
.mirror-market-chart > h3 {
    margin-top: 0;
    color: var(--mpact-teal);
}

.mirror-market-feed table {
    font-size: 0.92rem;
}

.mirror-market-years {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.mirrored-page .mirror-market-years a {
    padding: 7px 10px;
    border: 1px solid #b9c8b9;
    border-radius: 4px;
    background: #ffffff;
    color: var(--mpact-teal);
    font-weight: 700;
    text-decoration: none;
}

.mirror-sens-archive details {
    border-top: 1px solid #d7ddd5;
}

.mirror-sens-archive summary {
    padding: 14px 2px;
    color: var(--mpact-teal);
    cursor: pointer;
    font-weight: 700;
}

.mirror-market-chart-summary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.mirror-market-chart-summary strong {
    color: var(--mpact-green);
    font-size: 1.6rem;
}

.mirror-market-chart svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    overflow: visible;
    background: #f4f8f3;
}

.mirror-market-chart svg line {
    stroke: #91a191;
    stroke-width: 1;
}

.mirror-market-chart svg polyline {
    fill: none;
    stroke: var(--mpact-green);
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}

.mirror-market-chart svg text {
    fill: var(--mpact-muted);
    font-family: inherit;
    font-size: 14px;
}

.mirror-market-chart > p {
    margin-bottom: 0;
    color: var(--mpact-muted);
    font-size: 0.88rem;
}

.mirrored-page .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.owned-video-page {
    min-height: 70vh;
    padding: 156px max(24px, calc((100vw - var(--content-width)) / 2 + 24px)) 72px;
    background: #f2f6fb;
}

.owned-video-heading {
    max-width: 920px;
    margin-bottom: 34px;
}

.owned-video-heading h1 {
    margin-bottom: 0;
    color: var(--mpact-teal);
}

.owned-video-player {
    width: min(100%, 1080px);
    background: #121212;
}

.owned-video-player video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.owned-video-actions {
    margin-top: 28px;
}

.site-search-page,
.our-websites-page {
    min-height: 70vh;
    padding: 156px max(24px, calc((100vw - var(--content-width)) / 2 + 24px)) 72px;
    background: #f2f6fb;
}

.site-search-heading,
.our-websites-page > header {
    max-width: 820px;
    margin-bottom: 44px;
}

.site-search-heading h1,
.our-websites-page h1 {
    color: var(--mpact-teal);
}

.site-search-heading form {
    margin-top: 28px;
}

.site-search-heading label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.site-search-heading form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 760px;
}

.site-search-heading input {
    min-width: 0;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #aab7aa;
    border-radius: 5px 0 0 5px;
    font: inherit;
}

.site-search-heading button {
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 0 5px 5px 0;
    background: var(--mpact-green);
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.site-search-results {
    max-width: 900px;
}

.site-search-results h2 {
    color: var(--mpact-teal);
    font-size: 1.5rem;
}

.site-search-results ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-search-results li {
    padding: 22px 0;
    border-bottom: 1px solid #ccd7cc;
}

.site-search-results a {
    color: var(--mpact-teal);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

.site-search-results p {
    margin: 7px 0 0;
    color: var(--mpact-muted);
}

.our-websites-page > section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 32px;
}

.our-websites-page > section a {
    display: grid;
    gap: 5px;
    padding: 24px 0;
    border-bottom: 1px solid #ccd7cc;
    color: var(--mpact-ink);
    text-decoration: none;
}

.our-websites-page > section strong {
    color: var(--mpact-teal);
    font-size: 1.25rem;
}

.our-websites-page > section span {
    color: var(--mpact-muted);
}

.newsletter-page {
    min-height: 70vh;
    padding: 156px max(24px, calc((100vw - var(--content-width)) / 2 + 24px)) 72px;
    background: #f2f6fb;
}

.newsletter-page > section {
    width: min(100%, 720px);
}

.newsletter-page h1 {
    color: var(--mpact-teal);
}

.newsletter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 18px;
}

.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 22px;
    border: 1px solid var(--mpact-green);
    border-radius: 5px;
    background: var(--mpact-green);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.site-button-secondary {
    background: #ffffff;
    color: var(--mpact-teal);
}

.newsletter-note {
    color: var(--mpact-muted);
    font-size: 0.94rem;
}

.mirror-contact-notice {
    margin: 28px 0;
    padding: 24px;
    border-left: 4px solid var(--mpact-green);
    background: #ffffff;
}

.mirror-contact-notice h2 {
    margin-top: 0;
    color: var(--mpact-teal);
}

.mirror-contact-notice a {
    color: var(--mpact-teal);
    font-weight: 700;
}

@media (max-width: 1120px) {
    .desktop-navigation {
        gap: 18px;
        font-size: 0.92rem;
    }

    .site-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .operations-grid,
    .stories-grid,
    .detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .division-hero,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .division-hero-media img {
        height: 420px;
    }

    .mirrored-page .wp-block-post-template,
    .mirrored-page .wp-block-gallery,
    .mirrored-page .wp-block-latest-posts,
    .mirrored-page .yotu-videos > ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    h1 {
        font-size: 2.55rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .site-header {
        height: 66px;
        background: rgba(255, 255, 255, 0.94);
        color: var(--mpact-ink);
    }

    .site-header-inner {
        grid-template-columns: 42px minmax(110px, 1fr) auto;
        gap: 8px;
        padding: 4px 14px;
    }

    .header-navigation {
        display: none;
    }

    .site-logo {
        width: 132px;
    }

    .site-logo img,
    .site-header.is-scrolled .site-logo img {
        height: 58px;
        filter: none;
    }

    .mobile-navigation {
        display: block;
    }

    .mobile-navigation summary {
        display: grid;
        gap: 5px;
        width: 38px;
        padding: 7px 2px;
        cursor: pointer;
        list-style: none;
    }

    .mobile-navigation summary::-webkit-details-marker {
        display: none;
    }

    .mobile-navigation summary span {
        display: block;
        width: 34px;
        height: 4px;
        background: var(--mpact-green);
    }

    .mobile-navigation nav {
        position: absolute;
        top: 66px;
        right: 0;
        left: 0;
        display: grid;
        padding: 12px 18px 20px;
        background: #101310;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    }

    .mobile-navigation nav a {
        padding: 12px 4px;
        border-bottom: 1px solid #343834;
        color: #ffffff;
        font-weight: 700;
        text-decoration: none;
    }

    .header-social-links {
        display: flex;
        gap: 7px;
    }

    .header-social-links a {
        width: 29px;
        height: 29px;
        font-size: 0.62rem;
    }

    .home-hero {
        height: 620px;
    }

    .hero-slide {
        background-position: 58% center;
    }

    .hero-slide::after {
        width: 76%;
        clip-path: polygon(0 0, 77% 0, 100% 50%, 77% 100%, 0 100%);
    }

    .hero-slide-content {
        padding: 94px 38px 0;
    }

    .hero-slide-content p {
        max-width: 330px;
        font-size: 2.25rem;
    }

    .hero-slide-content strong {
        max-width: 320px;
        font-size: 1.24rem;
    }

    .hero-pagination {
        right: 24px;
        bottom: 22px;
        gap: 8px;
    }

    .hero-pagination label {
        width: 27px;
        height: 27px;
    }

    .hero-social-links {
        display: none;
    }

    .market-ticker {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        min-height: 90px;
        padding: 12px 18px;
    }

    .market-ticker p + p::before {
        margin: 0 8px 0 0;
    }

    .investor-lead-grid,
    .investor-news-grid,
    .sustainability-grid,
    .gallery-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .investor-lead-grid,
    .investor-news-grid {
        gap: 36px;
    }

    .report-card {
        grid-template-columns: 1fr;
    }

    .report-card img {
        width: min(100%, 280px);
        margin: 0 auto;
    }

    .sens-card,
    .information-card {
        min-height: 0;
    }

    .awards-copy h2 {
        font-size: 2.15rem;
    }

    .sustainability-header,
    .stories-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .division-hero {
        min-height: 0;
        padding-top: 116px;
    }

    .policy-hero {
        min-height: 0;
        padding-top: 120px;
    }

    .mirrored-page > article > header > .wp-block-post-featured-image,
    .mirrored-page > header > .wp-block-post-featured-image {
        height: 460px;
    }

    .mirrored-page .ticker,
    .mirrored-page .wp-block-columns {
        align-items: stretch;
        flex-direction: column;
    }

    .mirrored-page .ticker {
        gap: 4px;
    }

    .mirrored-page .ticker p + p::before {
        display: none;
    }

    .our-websites-page > section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    h1 {
        font-size: 2.2rem;
    }

    .home-section,
    .operations-section,
    .stories-section,
    .sustainability-section,
    .detail-band,
    .contact-band,
    .division-source-band {
        padding: 48px 20px;
    }

    .site-logo {
        width: 116px;
    }

    .header-social-links {
        gap: 5px;
    }

    .header-social-links a {
        width: 27px;
        height: 27px;
    }

    .home-hero {
        height: 610px;
    }

    .hero-slide-content {
        padding-right: 26px;
        padding-left: 26px;
    }

    .hero-pagination {
        right: 50%;
        transform: translateX(50%);
    }

    .hero-pagination label {
        width: 28px;
        height: 28px;
    }

    .operations-grid,
    .stories-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .operation-card,
    .story-card {
        grid-template-rows: 220px 1fr;
    }

    .operation-card img,
    .story-card img {
        height: 220px;
    }

    .awards-section {
        min-height: 500px;
    }

    .awards-copy {
        padding: 80px 20px;
    }

    .awards-copy nav {
        flex-wrap: wrap;
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 42px 26px 50px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 14px 28px;
    }

    .division-hero {
        padding: 112px 20px 54px;
    }

    .division-hero-media img {
        height: 310px;
    }

    .contact-panel {
        gap: 28px;
    }

    .policy-content {
        padding: 48px 20px;
    }

    .policy-section {
        padding: 22px;
    }

    .mirrored-page > article > header > .wp-block-post-featured-image,
    .mirrored-page > header > .wp-block-post-featured-image {
        height: 410px;
    }

    .mirrored-page .purple-patch {
        bottom: 28px;
        left: 20px;
        width: calc(100% - 40px);
        padding: 22px;
    }

    .mirrored-page .purple-patch h1,
    .mirrored-page .purple-patch h2 {
        font-size: 2rem;
    }

    .mirrored-page .entry-content,
    .mirrored-page .wp-block-query,
    .mirrored-page > article > section,
    .mirrored-page > section {
        padding: 42px 20px;
    }

    .mirrored-page .wp-block-post-template,
    .mirrored-page .wp-block-gallery,
    .mirrored-page .wp-block-latest-posts,
    .mirrored-page .yotu-videos > ul {
        grid-template-columns: 1fr;
    }

    .mirrored-page .wp-block-file,
    .site-search-heading form > div {
        align-items: stretch;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .site-search-heading input,
    .site-search-heading button {
        border-radius: 5px;
    }

    .site-search-heading button {
        margin-top: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
