/* DHL public theme v2 */
:root {
    --dhl-yellow: #ffcc00;
    --dhl-red: #d40511;
    --dhl-red-hover: #b8040f;
    --dhl-black: #1a1a1a;
    --dhl-text: #333;
    --dhl-muted: #666;
    --dhl-gray-bg: #f5f5f5;
    --dhl-green: #007a33;
    --dhl-border: #ddd;
    --dhl-border-light: #eee;
    --dhl-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --dhl-wrap: 1240px;
    --dhl-radius: 10px;
    --dhl-radius-sm: 6px;
    --dhl-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.04);
    --dhl-shadow-hover: 0 4px 24px rgba(0, 0, 0, 0.08);
    --dhl-transition: 0.2s ease;
}

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

body.dhl-public {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--dhl-font);
    font-size: 16px;
    line-height: 1.55;
    color: var(--dhl-text);
    background: var(--dhl-gray-bg);
    -webkit-font-smoothing: antialiased;
}

body.dhl-public main {
    flex: 1;
}

.dhl-wrap {
    width: 100%;
    max-width: var(--dhl-wrap);
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 768px) {
    .dhl-wrap {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ── Header ── */
.dhl-header {
    background: var(--dhl-yellow);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.dhl-header__utility {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 13px;
    color: var(--dhl-black);
}

.dhl-header__utility-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    min-height: 2.375rem;
}

.dhl-header__main {
    display: flex;
    align-items: center;
    min-height: 4.75rem;
    gap: 0;
}

.dhl-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.875rem 2rem 0.875rem 0;
    text-decoration: none;
}

.dhl-header__logo img {
    display: block;
    height: 2.625rem;
    width: auto;
}

@media (min-width: 768px) {
    .dhl-header__logo img {
        height: 2.875rem;
    }
}

.dhl-header__nav {
    display: none;
    flex: 1;
    align-items: stretch;
    align-self: stretch;
}

@media (min-width: 1024px) {
    .dhl-header__nav {
        display: flex;
    }
}

.dhl-header__nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0 1.375rem;
    font-size: 15px;
    font-weight: 600;
    color: var(--dhl-black);
    text-decoration: none;
    white-space: nowrap;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    transition: color var(--dhl-transition);
}

.dhl-header__nav-link:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.dhl-header__nav-link--active {
    font-weight: 700;
}

.dhl-header__nav-link--active::after {
    content: "";
    position: absolute;
    left: 1.375rem;
    right: 1.375rem;
    bottom: 0;
    height: 3px;
    background: var(--dhl-red);
}

.dhl-header__nav-link--disabled {
    color: rgba(0, 0, 0, 0.42);
    cursor: default;
}

.dhl-header__nav-link:not(.dhl-header__nav-link--disabled):hover {
    color: var(--dhl-red);
}

.dhl-header__actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-left: auto;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.dhl-header__lang {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 14px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dhl-black);
    padding: 0.25rem;
    transition: opacity var(--dhl-transition);
}

.dhl-header__lang:hover {
    opacity: 0.75;
}

.dhl-header__mobile-nav {
    display: flex;
    overflow-x: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dhl-header__mobile-nav::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1024px) {
    .dhl-header__mobile-nav {
        display: none;
    }
}

.dhl-header__mobile-nav .dhl-header__nav-link {
    padding: 0.875rem 1.125rem;
    border-right: none;
    border-bottom: 3px solid transparent;
}

.dhl-header__mobile-nav .dhl-header__nav-link--active::after {
    display: none;
}

.dhl-header__mobile-nav .dhl-header__nav-link--active {
    border-bottom-color: var(--dhl-red);
}

@media (max-width: 1023px) {
    .dhl-header__utility-country {
        display: none;
    }

    .dhl-header__lang:not(.dhl-header__lang--mobile) {
        display: none;
    }
}

@media (min-width: 1024px) {
    .dhl-header__lang--mobile {
        display: none;
    }
}

.dhl-btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0 1.375rem;
    background: var(--dhl-red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--dhl-transition), transform var(--dhl-transition);
}

.dhl-btn-red:hover {
    background: var(--dhl-red-hover);
}

.dhl-btn-red:focus-visible {
    outline: 2px solid var(--dhl-black);
    outline-offset: 2px;
}

.dhl-btn-red svg {
    width: 1.125rem;
    height: 1.125rem;
    fill: currentColor;
}

/* ── Hero / formulaire ── */
.dhl-hero {
    background: #fff;
    padding: 2.75rem 0 3.25rem;
    border-bottom: 1px solid var(--dhl-border-light);
}

@media (min-width: 768px) {
    .dhl-hero {
        padding: 3.5rem 0 4rem;
    }
}

.dhl-hero__title {
    margin: 0 0 1.75rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dhl-black);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .dhl-hero__title {
        font-size: 2.5rem;
        margin-bottom: 2.25rem;
    }
}

.dhl-hero__lead {
    margin: 0 0 1.75rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--dhl-muted);
    max-width: 40rem;
}

.dhl-hero__alert {
    margin: 0 0 1.75rem;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--dhl-text);
    background: #fff8f8;
    border: 1px solid #f5d0d3;
    border-left: 4px solid var(--dhl-red);
    border-radius: var(--dhl-radius-sm);
    max-width: 40rem;
}

.dhl-hero__alert strong {
    font-family: ui-monospace, "Cascadia Code", monospace;
    color: var(--dhl-black);
}

.dhl-track-form {
    max-width: 44rem;
}

.dhl-track-form__label {
    display: block;
    margin-bottom: 0.875rem;
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--dhl-black);
}

.dhl-track-form__group {
    display: flex;
    flex-direction: column;
    box-shadow: var(--dhl-shadow);
    border-radius: var(--dhl-radius-sm);
    overflow: hidden;
}

@media (min-width: 640px) {
    .dhl-track-form__group {
        flex-direction: row;
    }
}

.dhl-track-form__input {
    flex: 1;
    min-height: 3.25rem;
    padding: 0 1.125rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--dhl-black);
    background: #fff;
    border: 1px solid var(--dhl-border);
    border-right: none;
}

@media (max-width: 639px) {
    .dhl-track-form__input {
        border-right: 1px solid var(--dhl-border);
        border-bottom: none;
    }
}

.dhl-track-form__input:focus {
    outline: none;
    border-color: var(--dhl-red);
    box-shadow: inset 0 0 0 1px var(--dhl-red);
    z-index: 1;
    position: relative;
}

.dhl-track-form__submit {
    min-height: 3.25rem;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: var(--dhl-red);
    border: none;
    cursor: pointer;
    transition: background var(--dhl-transition);
    white-space: nowrap;
}

.dhl-track-form__submit:hover {
    background: var(--dhl-red-hover);
}

.dhl-track-form__submit:focus-visible {
    outline: 2px solid var(--dhl-black);
    outline-offset: 2px;
}

.dhl-form-error {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    color: var(--dhl-red);
}

/* ── FAQ ── */
.dhl-faq {
    padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
    .dhl-faq {
        padding: 3.5rem 0 5rem;
    }
}

.dhl-faq__title {
    margin: 0 0 1.75rem;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dhl-black);
    letter-spacing: -0.01em;
}

.dhl-faq__list {
    max-width: 48rem;
    background: #fff;
    border: 1px solid var(--dhl-border-light);
    border-radius: var(--dhl-radius);
    box-shadow: var(--dhl-shadow);
    overflow: hidden;
}

.dhl-faq__item + .dhl-faq__item {
    border-top: 1px solid var(--dhl-border-light);
}

.dhl-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    color: var(--dhl-black);
    background: #fff;
    border: none;
    cursor: pointer;
    transition: background var(--dhl-transition), color var(--dhl-transition);
}

.dhl-faq__question:hover {
    background: #fafafa;
    color: var(--dhl-red);
}

.dhl-faq__question svg {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    padding: 0.2rem;
    border-radius: 50%;
    background: var(--dhl-gray-bg);
    transition: transform var(--dhl-transition), background var(--dhl-transition);
}

.dhl-faq__question.is-open svg {
    transform: rotate(180deg);
    background: rgba(212, 5, 17, 0.08);
    color: var(--dhl-red);
}

.dhl-faq__answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--dhl-muted);
}

/* ── Page résultat ── */
.dhl-result {
    padding: 1.75rem 0 3rem;
}

@media (min-width: 1024px) {
    .dhl-result {
        padding: 2.25rem 0 4rem;
    }
}

.dhl-result__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .dhl-result__grid {
        grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
        gap: 2.5rem;
    }
}

.dhl-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9375rem;
    color: var(--dhl-muted);
    text-decoration: none;
    transition: color var(--dhl-transition);
}

.dhl-back-link:hover {
    color: var(--dhl-red);
}

.dhl-back-link svg {
    width: 0.9375rem;
    height: 0.9375rem;
}

.dhl-result__summary {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.dhl-result__label {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--dhl-text);
}

.dhl-result__number {
    margin: 0;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--dhl-red);
    letter-spacing: -0.02em;
    word-break: break-all;
}

@media (min-width: 768px) {
    .dhl-result__number {
        font-size: 2.125rem;
    }
}

.dhl-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 0.25rem;
    padding: 0.3rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--dhl-green);
    border-radius: 999px;
}

.dhl-result__delivery {
    margin: 0.5rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--dhl-text);
}

.dhl-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dhl-stack--lg {
    gap: 1.75rem;
}

/* ── Cartes ── */
.dhl-card {
    background: #fff;
    border: 1px solid var(--dhl-border-light);
    border-radius: var(--dhl-radius);
    box-shadow: var(--dhl-shadow);
    transition: box-shadow var(--dhl-transition);
}

.dhl-card--hover:hover {
    box-shadow: var(--dhl-shadow-hover);
}

.dhl-card__body {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .dhl-card__body {
        padding: 1.75rem;
    }
}

.dhl-card__title {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dhl-red);
    letter-spacing: 0.01em;
}

.dhl-card__title--lg {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.dhl-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem 1.5rem;
}

@media (min-width: 640px) {
    .dhl-details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 1.25rem;
    }
}

.dhl-details-grid > div {
    padding-bottom: 0.25rem;
}

.dhl-details-grid dt {
    margin: 0 0 0.3rem;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #888;
    text-transform: none;
}

.dhl-details-grid dd {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dhl-black);
    line-height: 1.4;
}

.dhl-details-grid dd + dd {
    margin-top: 0.15rem;
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--dhl-muted);
}

/* ── Timeline ── */
.dhl-timeline {
    margin: 0;
    padding: 0 0 0 1.75rem;
    list-style: none;
    border-left: 2px solid var(--dhl-red);
}

.dhl-timeline__item {
    position: relative;
    padding-bottom: 1.5rem;
}

.dhl-timeline__item:last-child {
    padding-bottom: 0;
}

.dhl-timeline__item:first-child .dhl-timeline__desc {
    color: var(--dhl-black);
}

.dhl-timeline__marker {
    position: absolute;
    left: -1.85rem;
    top: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    background: #fff;
}

.dhl-timeline__marker svg {
    width: 1.125rem;
    height: 1.125rem;
    fill: var(--dhl-red);
}

.dhl-timeline__diamond {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--dhl-red);
    transform: rotate(45deg);
}

.dhl-timeline__date {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--dhl-black);
}

.dhl-timeline__time {
    margin: 0.15rem 0 0;
    font-size: 0.75rem;
    color: #999;
}

.dhl-timeline__desc {
    margin: 0.4rem 0 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dhl-text);
}

.dhl-timeline__loc {
    margin: 0.15rem 0 0;
    font-size: 0.875rem;
    color: var(--dhl-muted);
}

.dhl-timeline__sep {
    margin: 1rem 0 0;
    border: none;
    border-top: 1px solid var(--dhl-border-light);
}

.dhl-empty {
    margin: 0;
    color: var(--dhl-muted);
    font-size: 0.9375rem;
}

/* ── Carte ── */
.dhl-map__country {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    z-index: 400;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dhl-black);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--dhl-border-light);
    border-radius: 999px;
    box-shadow: var(--dhl-shadow);
}

.dhl-map-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--dhl-radius);
}

.dhl-map {
    width: 100%;
    height: 20rem;
    z-index: 0;
    background: #e5e3df;
}

@media (min-width: 768px) {
    .dhl-map {
        height: 24rem;
    }
}

@media (min-width: 1024px) {
    .dhl-map {
        height: 26rem;
    }
}

.dhl-map-wrap .leaflet-container {
    font-family: var(--dhl-font);
}

.dhl-map-wrap .leaflet-control-zoom {
    border: none !important;
    box-shadow: var(--dhl-shadow) !important;
    border-radius: var(--dhl-radius-sm) !important;
    overflow: hidden;
    margin-right: 0.875rem !important;
    margin-bottom: 0.875rem !important;
}

.dhl-map-wrap .leaflet-control-zoom a {
    width: 2rem !important;
    height: 2rem !important;
    line-height: 2rem !important;
    font-size: 1.125rem !important;
    color: var(--dhl-black) !important;
    background: #fff !important;
    border-bottom: 1px solid var(--dhl-border-light) !important;
}

.dhl-map-wrap .leaflet-control-zoom a:hover {
    background: #f8f8f8 !important;
}

.dhl-map-wrap .leaflet-control-attribution {
    font-size: 9px;
    background: rgba(255, 255, 255, 0.8) !important;
    padding: 2px 6px !important;
}

.tracking-map-marker {
    background: transparent !important;
    border: none !important;
}

.tracking-pin {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.tracking-map-city-label {
    background: rgba(255, 255, 255, 0.92) !important;
    border: none !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12) !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--dhl-black) !important;
    padding: 2px 6px !important;
}

.tracking-map-city-label::before {
    display: none !important;
}

.tracking-popup {
    font-size: 13px;
    line-height: 1.5;
    min-width: 150px;
}

.tracking-popup p {
    margin: 0 0 0.3rem;
}

.tracking-popup p:last-child {
    margin-bottom: 0;
}

.dhl-map__overlay {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dhl-black);
    background: #fff;
    border-radius: var(--dhl-radius-sm);
    box-shadow: var(--dhl-shadow);
    pointer-events: none;
}

.dhl-map__overlay svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke: var(--dhl-red);
    flex-shrink: 0;
}

/* ── Cartes actions ── */
.dhl-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dhl-actions {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dhl-action-card {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dhl-action-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    background: rgba(212, 5, 17, 0.08);
    border-radius: var(--dhl-radius-sm);
}

.dhl-action-card__icon svg {
    width: 1.375rem;
    height: 1.375rem;
    stroke: var(--dhl-red);
}

.dhl-action-card h3 {
    margin: 0 0 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dhl-black);
}

.dhl-action-card p {
    margin: 0 0 auto;
    padding-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--dhl-muted);
}

.dhl-action-card a {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dhl-red);
    text-decoration: none;
    transition: color var(--dhl-transition);
}

.dhl-action-card a:hover {
    color: var(--dhl-red-hover);
    text-decoration: underline;
}

/* ── Footer ── */
.dhl-footer {
    margin-top: auto;
    background: #141414;
    color: #999;
}

.dhl-footer__bar {
    height: 3px;
    background: var(--dhl-yellow);
}

.dhl-footer__inner {
    padding: 2.75rem 0;
}

.dhl-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .dhl-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dhl-footer__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.dhl-footer h3 {
    margin: 0 0 0.875rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
}

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

.dhl-footer li {
    margin-bottom: 0.5rem;
    font-size: 14px;
    line-height: 1.45;
}

.dhl-footer a {
    color: #999;
    text-decoration: none;
    transition: color var(--dhl-transition);
}

.dhl-footer a:hover {
    color: #fff;
}

.dhl-footer__logo img {
    display: block;
    height: 1.875rem;
    width: auto;
}

.dhl-footer__tagline {
    margin: 0.875rem 0 0;
    font-size: 13px;
    line-height: 1.55;
    color: #777;
}

.dhl-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: #666;
}

.dhl-footer__bottom p {
    margin: 0;
}

@media (min-width: 768px) {
    .dhl-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.dhl-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.dhl-footer__links a {
    color: #666;
    text-decoration: none;
    transition: color var(--dhl-transition);
}

.dhl-footer__links a:hover {
    color: #fff;
    text-decoration: underline;
}

.dhl-footer__logo a {
    display: block;
    text-decoration: none;
}

.dhl-static-page p {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--dhl-muted);
}

.dhl-static-page p:last-of-type {
    margin-bottom: 0;
}

.dhl-static-page__back {
    margin-top: 1.5rem !important;
    padding-top: 1.25rem;
    border-top: 1px solid var(--dhl-border-light);
    font-size: 0.875rem;
}

.dhl-static-page__back a {
    color: var(--dhl-red);
    font-weight: 700;
    text-decoration: none;
}

.dhl-static-page__back a:hover {
    text-decoration: underline;
}

.dhl-static-page__sep {
    margin: 0 0.5rem;
    color: var(--dhl-border);
}

.dhl-page-card--anchor {
    scroll-margin-top: 1.5rem;
}

.dhl-page-card--anchor:target {
    border-color: var(--dhl-yellow);
    box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.35);
}

.dhl-support-cta + .dhl-support-cta {
    margin-top: 1rem;
}

.dhl-support-cta {
    margin-top: 2rem;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--dhl-border-light);
    border-radius: var(--dhl-radius);
    box-shadow: var(--dhl-shadow);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dhl-support-cta p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dhl-black);
}

.dhl-page-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .dhl-page-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dhl-page-card {
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dhl-page-card h2 {
    margin: 0 0 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dhl-red);
}

.dhl-page-card p {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--dhl-muted);
    flex: 1;
}

.dhl-page-card__link {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dhl-red);
    text-decoration: none;
}

.dhl-page-card__link:hover {
    text-decoration: underline;
}

[x-cloak] {
    display: none !important;
}

:focus-visible {
    outline: 2px solid var(--dhl-red);
    outline-offset: 2px;
}
