:root {
    --color-ink: #1f2a27;
    --color-muted: #64706b;
    --color-line: #d9e1dd;
    --color-surface: #ffffff;
    --color-surface-dim: #eeeeee;
    --color-surface-soft: #f4f5f7;
    --color-surface-bright: #f9fafc;
    --color-accent: #087c68;
    --color-primary: #00a790;
    --color-interactive: #007863;
    --color-on-surface: #2a2a2a;
    --color-on-surface-variant: #6c6c6c;
    --color-outline: #808080;
    --color-accent-dark: #075b4e;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    /* Keep the editorial content frame on the same responsive system as the
       Astro website. The reading column remains intentionally narrower. */
    --container-max: 1440px;
    --content-max: 1360px;
    --content-width: var(--content-max);
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --bp-tablet: 768px;
    --bp-desktop: 1024px;
    --reading-width: 720px;
    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 5rem;
    --radius: 0.75rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-surface-dim);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--color-accent);
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #28bda2;
    outline-offset: 3px;
}

.container {
    width: calc(100% - 2rem);
    max-width: var(--container-max);
    padding-inline: var(--gutter);
    margin-inline: auto;
}

.container--narrow {
    max-width: calc(var(--content-max) + (2 * var(--gutter)));
}

.container--reading {
    max-width: calc(var(--reading-width) + (2 * var(--gutter)));
}

/* The footer already owns the website's 16px outer frame. */
.footer-frame > .container {
    width: 100%;
}

.sr-only,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 10;
    top: var(--space-3);
    left: var(--space-3);
    padding: var(--space-2) var(--space-3);
    color: #fff;
    background: var(--color-accent-dark);
}

.site-header {
    border-bottom: 1px solid var(--color-line);
    background: var(--color-surface);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5rem;
    gap: var(--space-5);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    color: var(--color-ink);
    font-size: 1.25rem;
    font-weight: 750;
    letter-spacing: -0.025em;
    text-decoration: none;
}

.site-brand__logo {
    width: auto;
    max-height: 2.5rem;
}

.site-brand__name {
    max-width: 18rem;
}

.site-nav .nav {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav .nav a {
    color: var(--color-muted);
    font-size: 0.9375rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav .nav a:hover {
    color: var(--color-accent);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    color: var(--color-ink);
    background: none;
    border: 0;
    cursor: pointer;
}

.menu-toggle__icon {
    display: grid;
    gap: 4px;
}

.menu-toggle__icon i {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: currentColor;
}

.archive-header {
    padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 7vw, 6rem);
    background: var(--color-surface-dim);
}

.section-label,
.post-card__tag {
    margin: 0 0 var(--space-3);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.archive-header h1,
.single-post__header h1,
.single-page__header h1 {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.archive-header__description {
    max-width: 62ch;
    margin: var(--space-4) 0 0;
    color: var(--color-muted);
    font-size: 1.125rem;
}

.post-index {
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.post-card {
    display: grid;
    grid-template-columns: minmax(220px, 34%) 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    padding: 0 0 var(--space-6);
    margin: 0 0 var(--space-6);
    border-bottom: 1px solid var(--color-line);
}

.post-card:last-of-type {
    margin-bottom: var(--space-6);
}

.post-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    background: var(--color-surface-soft);
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease-out;
}

.post-card__image:hover img {
    transform: scale(1.025);
}

.post-card__body h2 {
    max-width: 20ch;
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.post-card__body h2 a {
    text-decoration: none;
}

.post-card__body > p {
    max-width: 62ch;
    margin: var(--space-3) 0 0;
    color: var(--color-muted);
}

.post-card__tag {
    display: inline-block;
    margin-bottom: var(--space-2);
    text-decoration: none;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    color: var(--color-muted);
    font-size: 0.875rem;
}

.post-meta a {
    color: var(--color-ink);
    font-weight: 650;
}

.single-post__header,
.single-page__header {
    padding-top: clamp(4rem, 9vw, 8rem);
    padding-bottom: var(--space-6);
}

.single-post__header h1,
.single-page__header h1 {
    max-width: 18ch;
}

.single-post__image {
    width: 100%;
    max-width: var(--container-max);
    padding-inline: var(--gutter);
    margin-bottom: clamp(3rem, 7vw, 6rem);
}

.single-post__image img {
    width: 100%;
    max-height: 44rem;
    margin: 0 auto;
    object-fit: cover;
    border-radius: var(--radius);
}

.single-post__image figcaption {
    margin-top: var(--space-2);
    color: var(--color-muted);
    font-size: 0.8125rem;
    text-align: center;
}

.post-content {
    font-size: 1.125rem;
}

.post-content > * {
    margin-top: 0;
    margin-bottom: 1.35em;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 2.25em;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.post-content h2 {
    font-size: 2rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote {
    max-width: 68ch;
}

.post-content a {
    color: var(--color-accent-dark);
}

.post-content blockquote {
    padding: var(--space-3) var(--space-4);
    margin-left: 0;
    color: var(--color-accent-dark);
    border-left: 1px solid var(--color-accent);
}

.post-content figure,
.post-content .kg-card {
    width: 100%;
    margin: 2.5rem 0;
}

.post-content img,
.post-content video {
    border-radius: var(--radius);
}

.post-content .kg-width-wide {
    width: min(960px, 100vw);
    margin-left: 50%;
    transform: translateX(-50%);
}

.post-content .kg-width-full {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.post-content .kg-gallery-container {
    display: grid;
    gap: 0.75rem;
}

.post-content .kg-gallery-row {
    display: flex;
    gap: 0.75rem;
}

.post-content .kg-gallery-image {
    min-width: 0;
    flex: 1;
}

.post-content .kg-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content .kg-bookmark-card {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
}

.post-content .kg-bookmark-container {
    display: grid;
    grid-template-columns: 1fr minmax(9rem, 30%);
    min-height: 10rem;
    color: inherit;
    text-decoration: none;
}

.post-content .kg-bookmark-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-4);
}

.post-content .kg-bookmark-title {
    font-weight: 750;
}

.post-content .kg-bookmark-description {
    margin-top: var(--space-2);
    color: var(--color-muted);
    font-size: 0.9375rem;
}

.post-content .kg-bookmark-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    align-items: center;
    margin-top: var(--space-3);
    color: var(--color-muted);
    font-size: 0.8125rem;
}

.post-content .kg-bookmark-icon {
    width: 1rem;
    height: 1rem;
    border-radius: 0.2rem;
}

.post-content .kg-bookmark-author,
.post-content .kg-bookmark-publisher {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-content .kg-bookmark-thumbnail {
    min-height: 10rem;
    background: var(--color-surface-soft);
}

.post-content .kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post__footer {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: center;
    padding: var(--space-5) 0;
    margin-top: var(--space-7);
    border-top: 1px solid var(--color-line);
    color: var(--color-muted);
    font-size: 0.875rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tag-list a {
    padding: 0.2rem 0.65rem;
    color: var(--color-accent-dark);
    border: 1px solid var(--color-line);
    border-radius: 999px;
    text-decoration: none;
}

.author-avatar {
    width: 4rem;
    height: 4rem;
    margin-bottom: var(--space-4);
    object-fit: cover;
    border-radius: 50%;
}

.empty-state {
    padding: var(--space-7) 0;
    text-align: center;
}

.empty-state h2 {
    margin: 0;
}

.empty-state p {
    color: var(--color-muted);
}

.pagination {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3);
    padding-top: var(--space-4);
    color: var(--color-accent-dark);
    font-weight: 700;
}

.site-footer {
    padding: clamp(3rem, 7vw, 6rem) 0 var(--space-4);
    color: #e9f3ef;
    background: var(--color-accent-dark);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 7vw, 8rem);
}

.site-brand--footer {
    color: inherit;
}

.site-footer__intro p {
    max-width: 38ch;
    color: #b9d8cf;
}

.form-status {
    min-height: 1.5rem;
    margin: var(--space-2) 0 0 !important;
    font-size: 0.875rem;
}

.form-status[data-state="error"] {
    color: #ffd2cb;
}

.form-status[data-state="success"] {
    color: #bdebe0;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3);
    padding-top: var(--space-5);
    margin-top: var(--space-6);
    color: #b9d8cf;
    border-top: 1px solid rgb(189 235 224 / 0.25);
    font-size: 0.8125rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__links .nav {
    display: flex;
    gap: var(--space-4);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links .nav a {
    text-decoration: none;
}

/* The website's phone breakpoint is 767px; tablet starts at 768px. */
@media (max-width: 767px) {
    .container,
    .container--narrow,
    .container--reading,
    .single-post__image {
        width: calc(100% - 2rem);
        max-width: none;
        padding-inline: 0;
    }

    .footer-frame > .container {
        width: 100%;
    }

    .site-header__inner {
        min-height: 4.25rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        inset: 4.25rem 0 auto;
        z-index: 5;
        display: none;
        padding: var(--space-3) 1rem var(--space-4);
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-line);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav .nav {
        display: grid;
        gap: 0;
        width: min(100% - 2rem, var(--content-width));
        margin: 0 auto;
    }

    .site-nav .nav li {
        border-bottom: 1px solid var(--color-line);
    }

    .site-nav .nav a {
        display: block;
        padding: var(--space-3) 0;
    }

    .post-card {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .post-card__image {
        aspect-ratio: 16 / 9;
    }

    .post-content .kg-bookmark-container {
        grid-template-columns: 1fr;
    }

    .post-content .kg-bookmark-thumbnail {
        min-height: 12rem;
        grid-row: 1;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .site-footer__bottom {
        display: grid;
    }
}

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

    .post-card__image img {
        transition: none;
    }
}

/* Shared website CTA, footer + fixed contact launcher. */
.blog-assessment-section {
    width: 100%;
}

.blog-assessment-section .section-frame {
    padding-inline: 1rem;
}

.blog-assessment-section .section-container {
    width: 100%;
    max-width: var(--container-max);
    padding-block: clamp(3.5rem, 2rem + 6vw, 6.25rem);
    padding-inline: var(--gutter);
    margin-inline: auto;
    border-bottom: 1px solid rgb(152 152 152 / 50%);
}

.blog-assessment-cta {
    position: relative;
    isolation: isolate;
    display: flex;
    width: 100%;
    min-height: clamp(480px, 38vw, 572px);
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    background: var(--color-interactive);
}

.blog-assessment-cta .cta__media {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: var(--color-interactive);
}

.blog-assessment-cta .cta__media::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(to right, rgb(0 52 42 / 80%) 0%, rgb(0 52 42 / 65%) 60%, transparent 100%);
    content: "";
}

.blog-assessment-cta .cta__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.blog-assessment-cta .cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: 820px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: clamp(2rem, 5vw, 4.375rem);
}

.blog-assessment-cta .cta__copy {
    min-width: 0;
}

.blog-assessment-cta .cta__copy h2,
.blog-assessment-cta .cta__copy p {
    margin: 0;
    color: inherit;
}

.blog-assessment-cta .cta__copy h2 {
    max-width: 17ch;
    font-size: clamp(1.875rem, 1.22rem + 2.6vw, 3.125rem);
    line-height: 1.2;
}

.blog-assessment-cta .cta__copy p {
    max-width: 58ch;
    margin-block: 2rem 2.5rem;
    font-family: "Exo", system-ui, sans-serif;
    font-size: clamp(1.125rem, 1.06rem + .3vw, 1.25rem);
    font-weight: 400;
    line-height: 1.5;
}

.blog-assessment-cta .cta__actions {
    display: flex;
    flex: none;
    flex-wrap: wrap;
    gap: .75rem;
}

.site-footer {
    padding: 0;
    color: var(--color-on-surface);
    background: var(--color-surface-dim);
}

.footer-frame {
    padding-inline: 1rem;
}

.site-footer__top {
    display: grid;
    gap: 3rem;
    padding-block: 4rem 3rem;
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.site-footer__group-title {
    margin: 0 0 .75rem;
    color: var(--color-interactive);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer__group ul,
.site-footer__social,
.site-footer__legal,
.lang-select__panel {
    display: flex;
    gap: .65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__group ul {
    flex-direction: column;
    gap: .75rem;
}

.site-footer__link {
    color: var(--color-on-surface-variant);
    font-weight: 500;
    text-decoration: none;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
    color: var(--color-primary);
}

.site-footer__link--inactive {
    cursor: not-allowed;
    opacity: .55;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.site-footer__identity {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: .5rem;
}

.site-brand--footer {
    color: var(--color-primary);
}

.site-footer__tagline {
    margin: 0;
    color: var(--color-on-surface-variant);
}

.site-footer__tagline {
    margin-inline-start: 4px;
    font-weight: 600;
}

.site-footer__social-link {
    display: inline-grid;
    place-items: center;
    inline-size: 40px;
    block-size: 40px;
    border: 1px solid var(--color-surface-dim);
    border-radius: 50%;
    color: var(--color-outline);
    background-color: #f4f5f7;
    transition: color 150ms ease, border-color 150ms ease;
}

.site-footer__social {
    gap: .5rem;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.site-footer__social-link svg {
    width: 20px;
    height: 20px;
}

.site-footer__bottom {
    display: block;
    padding-top: 0;
    margin-top: 0;
    color: inherit;
    font-size: inherit;
    border-top: 1px solid rgb(196 196 196 / 50%);
}

.site-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-block: 2rem;
}

.site-footer__copyright,
.site-footer__legal a {
    margin: 0;
    color: var(--color-on-surface-variant);
    font-size: .9375rem;
    text-decoration: none;
}

.site-footer__legal {
    gap: 1.5rem;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: var(--color-primary);
}

.site-footer__funding-marks {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-inline-start: 4px;
}

.funding-mark {
    display: inline-flex;
    align-items: center;
    color: var(--color-outline);
}

.funding-mark__link {
    display: block;
    color: inherit;
    line-height: 0;
}

.funding-mark__link:hover,
.funding-mark__link:focus-visible {
    color: var(--color-on-surface-variant);
}

.funding-mark__logo {
    display: block;
    width: 115px;
    height: 34px;
    background: currentColor;
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
}

.funding-mark__logo--prr {
    width: 95px;
    height: 34px;
    -webkit-mask-image: url("../images/funding/prr-logo.svg");
    mask-image: url("../images/funding/prr-logo.svg");
}

.funding-mark__logo--republica {
    width: 115px;
    height: 34px;
    -webkit-mask-image: url("../images/funding/republica-portuguesa-logo.svg");
    mask-image: url("../images/funding/republica-portuguesa-logo.svg");
}

.funding-mark__logo--eu {
    width: 112px;
    height: 34px;
    -webkit-mask-image: url("../images/funding/european-union-logo.svg");
    mask-image: url("../images/funding/european-union-logo.svg");
}

.lang-select {
    position: relative;
}

.lang-select__trigger {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    min-height: 40px;
    padding: .5rem .75rem;
    border: 1px solid #eeeeee;
    border-radius: 999px;
    color: var(--color-on-surface);
    background: var(--color-surface);
    font-weight: 500;
    cursor: pointer;
}

.lang-select__trigger:hover,
.lang-select__trigger:focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.lang-select__globe,
.lang-select__chevron {
    width: 18px;
    height: 18px;
    flex: none;
}

.lang-select__chevron {
    width: 16px;
    height: 16px;
    transition: transform 150ms ease;
}

.lang-select__trigger[aria-expanded="true"] .lang-select__chevron {
    transform: rotate(180deg);
}

.lang-select__panel {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: calc(100% + 6px);
    display: grid;
    min-width: 172px;
    margin: 0;
    padding: .25rem;
    border: 1px solid #eeeeee;
    border-radius: .75rem;
    background: var(--color-surface);
    box-shadow: 0 12px 28px rgb(0 28 23 / 14%);
}

.lang-select__panel[hidden] {
    display: none;
}

.lang-select__option {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .75rem;
    border-radius: .45rem;
    color: var(--color-on-surface);
    text-decoration: none;
}

.lang-select__option:hover,
.lang-select__option:focus-visible {
    background: #eeeeee;
}

.lang-select__option[aria-current="page"] {
    color: var(--color-primary);
    font-weight: 600;
}

.lang-select__code {
    width: 1.75rem;
    font-weight: 600;
}

.lang-select__name {
    color: var(--color-outline);
}

.lang-select__option[aria-current="page"] .lang-select__name {
    color: inherit;
}

@media (min-width: 1024px) {
    .site-footer__top {
        grid-template-columns: 2fr 1.2fr;
        align-items: start;
    }

    .site-footer__bottom-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .site-footer__legal {
        margin-inline-start: auto;
    }

    .site-footer__lang {
        margin-inline-start: 2.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-footer__brand {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
        column-gap: 2rem;
        row-gap: 1rem;
    }

    .site-footer__identity {
        grid-column: 1 / -1;
    }

    .site-footer__social {
        grid-column: 1;
        align-self: center;
    }

    .site-footer__funding-marks {
        grid-column: 2;
        justify-content: flex-end;
        align-self: center;
    }

    .site-footer__bottom-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .site-footer__legal {
        margin-inline-start: auto;
    }

    .site-footer__lang {
        margin-inline-start: 2.5rem;
    }
}

@media (max-width: 767px) {
    .site-footer__nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .site-footer__bottom-inner {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .site-footer__copyright {
        grid-column: 1 / -1;
    }

    .site-footer__legal {
        grid-column: 1;
        flex-wrap: wrap;
    }

    .site-footer__lang {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-tab,
    .contact-tab__copy,
    .lang-select__chevron {
        transition: none;
    }
}
