/**
 * Overige homepage- en algemene secties voor Wieke Logistics.
 *
 * Inhoud:
 * 1. Diensten
 * 2. Voordelen
 * 3. Voertuig
 * 4. Werkwijze
 * 5. Werkgebied
 * 6. Veelgestelde vragen
 * 7. Afsluitende CTA
 * 8. Algemene WordPress-pagina's
 * 9. 404-pagina
 */


/* =========================================================
   1. DIENSTEN
   ========================================================= */

.wieke-services {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: var(--wieke-section-space);
    background: var(--wieke-white);
}

.wieke-services::before {
    position: absolute;
    top: 4rem;
    right: -8rem;
    z-index: -1;
    width: 18rem;
    height: 18rem;
    border: 2.5rem solid rgba(235, 103, 9, 0.045);
    border-radius: 50%;
    content: "";
}

.wieke-services__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(19rem, 0.62fr);
    align-items: end;
    gap: clamp(2rem, 6vw, 5rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.wieke-services__title {
    max-width: 14ch;
    margin-bottom: 0;
}

.wieke-services__intro {
    color: var(--wieke-text);
    font-size: 1.02rem;
    line-height: 1.75;
}

.wieke-services__intro p {
    margin-bottom: 1rem;
}

.wieke-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.wieke-service-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid var(--wieke-border);
    border-radius:
        var(--wieke-radius-large)
        var(--wieke-radius-large)
        0.4rem
        var(--wieke-radius-large);
    background:
        linear-gradient(
            160deg,
            var(--wieke-white) 0%,
            var(--wieke-purple-soft) 100%
        );
    box-shadow: var(--wieke-shadow-small);
    transition:
        border-color var(--wieke-transition),
        box-shadow var(--wieke-transition),
        transform var(--wieke-transition);
}

.wieke-service-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4.5rem;
    height: 0.3rem;
    border-radius: var(--wieke-radius-pill) 0 0 0;
    background: var(--wieke-orange);
    content: "";
    opacity: 0.75;
}

.wieke-service-card:hover {
    border-color: rgba(235, 103, 9, 0.45);
    box-shadow: var(--wieke-shadow-medium);
    transform: translateY(-0.35rem);
}

.wieke-service-card--featured {
    border-color: rgba(235, 103, 9, 0.38);
    background:
        linear-gradient(
            145deg,
            var(--wieke-orange-light) 0%,
            var(--wieke-white) 70%
        );
}

.wieke-service-card--route {
    background:
        linear-gradient(
            145deg,
            var(--wieke-purple-dark) 0%,
            var(--wieke-purple) 100%
        );
    color: var(--wieke-white);
}

.wieke-service-card__route-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.wieke-service-card__route-line {
    position: absolute;
    right: -1rem;
    bottom: 1.5rem;
    width: 75%;
    height: 45%;
    border-right: 2px dashed rgba(255, 255, 255, 0.13);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.13);
    border-radius: 0 0 4rem 0;
}

.wieke-service-card__route-dot {
    position: absolute;
    width: 0.65rem;
    height: 0.65rem;
    border: 0.13rem solid var(--wieke-white);
    border-radius: 50%;
    background: var(--wieke-orange);
}

.wieke-service-card__route-dot--one {
    right: 0.4rem;
    bottom: 43%;
}

.wieke-service-card__route-dot--two {
    right: 42%;
    bottom: 1.2rem;
}

.wieke-service-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.wieke-service-card__icon {
    display: inline-flex;
    width: 4rem;
    height: 4rem;
    align-items: center;
    justify-content: center;
    border-radius:
        1.2rem 1.2rem 0.25rem 1.2rem;
    background: var(--wieke-purple-light);
    color: var(--wieke-purple-dark);
}

.wieke-service-card--featured .wieke-service-card__icon {
    background: var(--wieke-orange);
    color: var(--wieke-white);
}

.wieke-service-card--route .wieke-service-card__icon {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    color: var(--wieke-orange-light);
}

.wieke-service-card__number {
    color: rgba(89, 86, 115, 0.2);
    font-family: var(--wieke-font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
}

.wieke-service-card--route .wieke-service-card__number {
    color: rgba(255, 255, 255, 0.16);
}

.wieke-service-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.wieke-service-card--route h3 {
    color: var(--wieke-white);
}

.wieke-service-card > p {
    position: relative;
    z-index: 2;
    margin-bottom: 1.25rem;
    color: var(--wieke-text);
    font-size: 0.95rem;
    line-height: 1.65;
}

.wieke-service-card--route > p {
    color: rgba(255, 255, 255, 0.72);
}

.wieke-service-card__list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0.55rem;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.wieke-service-card__list li {
    position: relative;
    margin: 0;
    padding-left: 1.5rem;
    color: var(--wieke-purple-dark);
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.45;
}

.wieke-service-card__list li::before {
    position: absolute;
    top: 0.54rem;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--wieke-orange);
    content: "";
}

.wieke-service-card--route .wieke-service-card__list li {
    color: rgba(255, 255, 255, 0.83);
}

.wieke-services__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid var(--wieke-border);
    border-radius:
        0.4rem
        var(--wieke-radius-large)
        var(--wieke-radius-large)
        var(--wieke-radius-large);
    background: var(--wieke-purple-soft);
}

.wieke-services__footer-content {
    display: flex;
    max-width: 48rem;
    align-items: flex-start;
    gap: 1rem;
}

.wieke-services__footer-icon {
    display: inline-flex;
    width: 3.5rem;
    height: 3.5rem;
    flex: 0 0 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: var(--wieke-orange-light);
    color: var(--wieke-orange-dark);
}

.wieke-services__footer h3 {
    margin-bottom: 0.35rem;
    font-size: 1.2rem;
}

.wieke-services__footer p {
    margin: 0;
    color: var(--wieke-text-light);
    font-size: 0.92rem;
}


/* =========================================================
   2. VOORDELEN
   ========================================================= */

.wieke-benefits {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: var(--wieke-section-space);
    background:
        linear-gradient(
            130deg,
            var(--wieke-purple-darker) 0%,
            var(--wieke-purple-dark) 48%,
            var(--wieke-purple) 100%
        );
    color: var(--wieke-white);
}

.wieke-benefits__background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.wieke-benefits__shape {
    position: absolute;
    border-radius: 50%;
}

.wieke-benefits__shape--one {
    top: -8rem;
    right: 8%;
    width: 22rem;
    height: 22rem;
    border: 3rem solid rgba(255, 255, 255, 0.035);
}

.wieke-benefits__shape--two {
    bottom: -5rem;
    left: -4rem;
    width: 14rem;
    height: 14rem;
    background: rgba(235, 103, 9, 0.08);
}

.wieke-benefits__route {
    position: absolute;
    top: 16%;
    right: 4%;
    width: 42%;
    height: 68%;
    border-top: 2px dashed rgba(255, 255, 255, 0.08);
    border-right: 2px dashed rgba(255, 255, 255, 0.08);
    border-radius: 0 5rem 0 0;
}

.wieke-benefits__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 0.72fr)
        minmax(31rem, 1.28fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
}

.wieke-benefits__title {
    max-width: 12ch;
    color: var(--wieke-white);
}

.wieke-benefits__lead {
    max-width: 38rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.wieke-benefits__highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--wieke-radius-medium);
    background: rgba(255, 255, 255, 0.07);
}

.wieke-benefits__highlight-icon {
    display: inline-flex;
    width: 3.5rem;
    height: 3.5rem;
    flex: 0 0 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: var(--wieke-orange);
    color: var(--wieke-white);
}

.wieke-benefits__highlight strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--wieke-white);
    font-size: 1rem;
}

.wieke-benefits__highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.9rem;
}

.wieke-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.wieke-benefit-card {
    position: relative;
    display: flex;
    min-height: 12rem;
    align-items: flex-start;
    gap: 1rem;
    overflow: hidden;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius:
        var(--wieke-radius-large)
        0.35rem
        var(--wieke-radius-large)
        var(--wieke-radius-large);
    background: rgba(255, 255, 255, 0.075);
    transition:
        border-color var(--wieke-transition),
        background-color var(--wieke-transition),
        transform var(--wieke-transition);
}

.wieke-benefit-card:hover {
    border-color: rgba(235, 103, 9, 0.5);
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-0.25rem);
}

.wieke-benefit-card__icon {
    display: inline-flex;
    width: 3.4rem;
    height: 3.4rem;
    flex: 0 0 3.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(235, 103, 9, 0.17);
    color: var(--wieke-orange-light);
}

.wieke-benefit-card__content {
    position: relative;
    z-index: 2;
}

.wieke-benefit-card h3 {
    margin-bottom: 0.5rem;
    color: var(--wieke-white);
    font-size: 1.1rem;
}

.wieke-benefit-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.88rem;
    line-height: 1.6;
}

.wieke-benefit-card__number {
    position: absolute;
    right: 0.7rem;
    bottom: -0.2rem;
    color: rgba(255, 255, 255, 0.055);
    font-family: var(--wieke-font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
}


/* =========================================================
   3. VOERTUIG
   ========================================================= */

.wieke-vehicle {
    position: relative;
    overflow: hidden;
    padding-block: var(--wieke-section-space);
    background: var(--wieke-white);
}

.wieke-vehicle::before {
    position: absolute;
    top: 10%;
    right: -6rem;
    width: 13rem;
    height: 13rem;
    border: 2rem solid rgba(89, 86, 115, 0.05);
    border-radius: 50%;
    content: "";
}

.wieke-vehicle__inner {
    display: grid;
    grid-template-columns:
        minmax(28rem, 1.05fr)
        minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
}

.wieke-vehicle__visual {
    position: relative;
    padding: 1rem 1.5rem 2.5rem 0;
}

.wieke-vehicle__visual::before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 82%;
    height: 88%;
    border-radius:
        4rem 1rem 4rem 1rem;
    background: var(--wieke-orange-light);
    content: "";
}

.wieke-vehicle__image-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 0.6rem solid var(--wieke-white);
    border-radius:
        1.5rem 4rem 1.5rem 1.5rem;
    box-shadow: var(--wieke-shadow-large);
}

.wieke-vehicle__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(46, 44, 61, 0.4) 100%
        );
}

.wieke-vehicle__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.wieke-vehicle__image-frame:hover .wieke-vehicle__image {
    transform: scale(1.04);
}

.wieke-vehicle__image-label {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--wieke-radius-medium);
    background: rgba(61, 58, 82, 0.8);
    color: var(--wieke-white);
    backdrop-filter: blur(10px);
}

.wieke-vehicle__image-label-icon {
    display: inline-flex;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 2.8rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    background: var(--wieke-orange);
}

.wieke-vehicle__image-label > span:last-child {
    display: flex;
    flex-direction: column;
}

.wieke-vehicle__image-label strong {
    font-size: 0.92rem;
}

.wieke-vehicle__image-label small {
    color: rgba(255, 255, 255, 0.68);
}

.wieke-vehicle__route-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    max-width: 20rem;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--wieke-border);
    border-radius:
        1rem 1rem 0.25rem 1rem;
    background: var(--wieke-white);
    box-shadow: var(--wieke-shadow-medium);
}

.wieke-vehicle__route-point {
    width: 0.85rem;
    height: 0.85rem;
    flex: 0 0 0.85rem;
    border: 0.18rem solid var(--wieke-white);
    border-radius: 50%;
    background: var(--wieke-orange);
    box-shadow: 0 0 0 0.25rem rgba(235, 103, 9, 0.18);
}

.wieke-vehicle__route-card div {
    display: flex;
    flex-direction: column;
}

.wieke-vehicle__route-card strong {
    color: var(--wieke-purple-dark);
    font-size: 0.9rem;
}

.wieke-vehicle__route-card span {
    color: var(--wieke-text-light);
    font-size: 0.76rem;
}

.wieke-vehicle__title {
    max-width: 13ch;
}

.wieke-vehicle__lead {
    color: var(--wieke-purple-dark);
    font-size: 1.08rem;
    font-weight: 550;
}

.wieke-vehicle__text {
    color: var(--wieke-text);
}

.wieke-vehicle__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-block: 1.8rem;
}

.wieke-vehicle-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--wieke-border);
    border-radius: var(--wieke-radius-medium);
    background: var(--wieke-purple-soft);
}

.wieke-vehicle-feature__icon {
    display: inline-flex;
    width: 2.9rem;
    height: 2.9rem;
    flex: 0 0 2.9rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    background: var(--wieke-white);
    color: var(--wieke-orange-dark);
}

.wieke-vehicle-feature h3 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.wieke-vehicle-feature p {
    margin: 0;
    color: var(--wieke-text-light);
    font-size: 0.82rem;
    line-height: 1.5;
}

.wieke-vehicle__notice {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem;
    border-left: 0.25rem solid var(--wieke-orange);
    border-radius: 0 var(--wieke-radius-medium) var(--wieke-radius-medium) 0;
    background: var(--wieke-orange-light);
}

.wieke-vehicle__notice-icon {
    color: var(--wieke-orange-dark);
}

.wieke-vehicle__notice p {
    margin: 0;
    color: var(--wieke-purple-dark);
    font-size: 0.88rem;
}

.wieke-vehicle__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.4rem;
    margin-top: 1.7rem;
}


/* =========================================================
   4. WERKWIJZE
   ========================================================= */

.wieke-process {
    position: relative;
    overflow: hidden;
    padding-block: var(--wieke-section-space);
    background:
        linear-gradient(
            180deg,
            var(--wieke-purple-soft) 0%,
            var(--wieke-white) 100%
        );
}

.wieke-process__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(20rem, 0.65fr);
    align-items: end;
    gap: clamp(2rem, 6vw, 5rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.wieke-process__title {
    max-width: 14ch;
    margin-bottom: 0;
}

.wieke-process__intro {
    color: var(--wieke-text);
    font-size: 1.02rem;
}

.wieke-process__timeline {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        5rem
        minmax(0, 1fr)
        5rem
        minmax(0, 1fr);
    align-items: stretch;
}

.wieke-process-step {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid var(--wieke-border);
    border-radius:
        var(--wieke-radius-large)
        var(--wieke-radius-large)
        0.35rem
        var(--wieke-radius-large);
    background: var(--wieke-white);
    box-shadow: var(--wieke-shadow-small);
}

.wieke-process-step__marker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.wieke-process-step__number {
    color: rgba(89, 86, 115, 0.22);
    font-family: var(--wieke-font-heading);
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1;
}

.wieke-process-step__icon {
    display: inline-flex;
    width: 3.7rem;
    height: 3.7rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.1rem;
    background: var(--wieke-orange-light);
    color: var(--wieke-orange-dark);
}

.wieke-process-step__label {
    margin-bottom: 0.35rem;
    color: var(--wieke-orange-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wieke-process-step h3 {
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
}

.wieke-process-step p {
    color: var(--wieke-text);
    font-size: 0.92rem;
}

.wieke-process-step__list {
    display: grid;
    gap: 0.5rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.wieke-process-step__list li {
    position: relative;
    margin: 0;
    padding-left: 1.3rem;
    color: var(--wieke-purple-dark);
    font-size: 0.84rem;
    font-weight: 650;
}

.wieke-process-step__list li::before {
    position: absolute;
    top: 0.52rem;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--wieke-orange);
    content: "";
}

.wieke-process__connector {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wieke-process__connector span {
    position: relative;
    width: 100%;
    border-top: 2px dashed rgba(89, 86, 115, 0.25);
}

.wieke-process__connector span::after {
    position: absolute;
    top: 50%;
    right: -0.05rem;
    width: 0.65rem;
    height: 0.65rem;
    border-top: 2px solid var(--wieke-orange);
    border-right: 2px solid var(--wieke-orange);
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

.wieke-process__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius:
        0.35rem
        var(--wieke-radius-large)
        var(--wieke-radius-large)
        var(--wieke-radius-large);
    background:
        linear-gradient(
            125deg,
            var(--wieke-purple-dark) 0%,
            var(--wieke-purple) 100%
        );
    color: var(--wieke-white);
}

.wieke-process__summary-content {
    display: flex;
    max-width: 49rem;
    align-items: flex-start;
    gap: 1rem;
}

.wieke-process__summary-icon {
    display: inline-flex;
    width: 3.6rem;
    height: 3.6rem;
    flex: 0 0 3.6rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: var(--wieke-orange);
}

.wieke-process__summary h3 {
    margin-bottom: 0.35rem;
    color: var(--wieke-white);
    font-size: 1.2rem;
}

.wieke-process__summary p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.wieke-process__summary-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 0.7rem;
}


/* =========================================================
   5. WERKGEBIED
   ========================================================= */

.wieke-work-area {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: var(--wieke-section-space);
    background: var(--wieke-white);
}

.wieke-work-area__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.wieke-work-area__shape {
    position: absolute;
    border-radius: 50%;
}

.wieke-work-area__shape--one {
    top: 5%;
    right: -7rem;
    width: 18rem;
    height: 18rem;
    background: rgba(235, 103, 9, 0.055);
}

.wieke-work-area__shape--two {
    bottom: -6rem;
    left: -5rem;
    width: 16rem;
    height: 16rem;
    border: 2rem solid rgba(89, 86, 115, 0.045);
}

.wieke-work-area__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(28rem, 1.08fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
}

.wieke-work-area__title {
    max-width: 13ch;
}

.wieke-work-area__lead {
    color: var(--wieke-purple-dark);
    font-size: 1.08rem;
    font-weight: 550;
}

.wieke-work-area__regions {
    display: grid;
    gap: 0.75rem;
    margin-block: 1.6rem;
}

.wieke-work-area__region {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--wieke-border);
    border-radius: var(--wieke-radius-medium);
    background: var(--wieke-purple-soft);
}

.wieke-work-area__region-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: var(--wieke-white);
    color: var(--wieke-orange-dark);
}

.wieke-work-area__region h3 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.wieke-work-area__region p {
    margin: 0;
    color: var(--wieke-text-light);
    font-size: 0.84rem;
}

.wieke-work-area__notice {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem;
    border-left: 0.25rem solid var(--wieke-purple);
    border-radius: 0 var(--wieke-radius-medium) var(--wieke-radius-medium) 0;
    background: var(--wieke-purple-light);
}

.wieke-work-area__notice-icon {
    color: var(--wieke-purple-dark);
}

.wieke-work-area__notice p {
    margin: 0;
    color: var(--wieke-purple-dark);
    font-size: 0.86rem;
}

.wieke-work-area__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.4rem;
    margin-top: 1.6rem;
}

.wieke-work-area__visual {
    position: relative;
    min-height: 35rem;
}

.wieke-work-area__map {
    position: relative;
    min-height: 34rem;
    overflow: hidden;
    border-radius:
        4rem 1rem 4rem 1rem;
    background:
        linear-gradient(
            145deg,
            var(--wieke-purple-dark) 0%,
            var(--wieke-purple) 100%
        );
    box-shadow: var(--wieke-shadow-large);
}

.wieke-work-area__map::before {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius:
        3.3rem 0.7rem 3.3rem 0.7rem;
    content: "";
}

.wieke-work-area__map-svg {
    position: absolute;
    inset: 2rem;
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
}

.wieke-work-area__map-country {
    fill: rgba(255, 255, 255, 0.08);
    stroke: rgba(255, 255, 255, 0.25);
    stroke-width: 2;
}

.wieke-work-area__map-route {
    fill: none;
    stroke: var(--wieke-orange);
    stroke-dasharray: 9 8;
    stroke-linecap: round;
    stroke-width: 3;
}

.wieke-work-area__map-route--secondary {
    stroke: rgba(255, 255, 255, 0.45);
}

.wieke-work-area__map-point {
    fill: var(--wieke-orange);
    stroke: var(--wieke-white);
    stroke-width: 3;
}

.wieke-work-area__map-point--start {
    fill: var(--wieke-white);
    stroke: var(--wieke-orange);
    stroke-width: 5;
}

.wieke-work-area__map-origin {
    position: absolute;
    top: 19%;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--wieke-radius-medium);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--wieke-shadow-medium);
    transform: translateX(-5%);
}

.wieke-work-area__map-origin-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--wieke-orange);
    box-shadow: 0 0 0 0.25rem rgba(235, 103, 9, 0.17);
}

.wieke-work-area__map-origin div {
    display: flex;
    flex-direction: column;
}

.wieke-work-area__map-origin strong {
    color: var(--wieke-purple-dark);
    font-size: 0.83rem;
}

.wieke-work-area__map-origin span {
    color: var(--wieke-text-light);
    font-size: 0.7rem;
}

.wieke-work-area__map-label {
    position: absolute;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wieke-work-area__map-label--north {
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.wieke-work-area__map-label--west {
    top: 50%;
    left: 1rem;
    transform: rotate(-90deg) translateX(-50%);
}

.wieke-work-area__map-label--east {
    top: 50%;
    right: 1rem;
    transform: rotate(90deg) translateX(50%);
}

.wieke-work-area__map-label--south {
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.wieke-work-area__distance-card {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    display: flex;
    max-width: 20rem;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--wieke-border);
    border-radius:
        1rem 1rem 0.25rem 1rem;
    background: var(--wieke-white);
    box-shadow: var(--wieke-shadow-medium);
}

.wieke-work-area__distance-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: var(--wieke-orange-light);
    color: var(--wieke-orange-dark);
}

.wieke-work-area__distance-card div {
    display: flex;
    flex-direction: column;
}

.wieke-work-area__distance-card strong {
    color: var(--wieke-purple-dark);
    font-size: 0.88rem;
}

.wieke-work-area__distance-card span {
    color: var(--wieke-text-light);
    font-size: 0.74rem;
}


/* =========================================================
   6. VEELGESTELDE VRAGEN
   ========================================================= */

.wieke-faq {
    padding-block: var(--wieke-section-space);
    background:
        linear-gradient(
            180deg,
            var(--wieke-purple-soft) 0%,
            var(--wieke-white) 100%
        );
}

.wieke-faq__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 0.72fr)
        minmax(32rem, 1.28fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 6rem);
}

.wieke-faq__intro {
    position: sticky;
    top: calc(var(--wieke-header-height) + 2rem);
}

.wieke-faq__title {
    max-width: 12ch;
}

.wieke-faq__lead {
    color: var(--wieke-text);
}

.wieke-faq__contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.8rem;
    padding: 1.3rem;
    border-radius:
        var(--wieke-radius-large)
        var(--wieke-radius-large)
        0.35rem
        var(--wieke-radius-large);
    background: var(--wieke-purple-dark);
    color: var(--wieke-white);
}

.wieke-faq__contact-icon {
    display: inline-flex;
    width: 3.5rem;
    height: 3.5rem;
    flex: 0 0 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: var(--wieke-orange);
}

.wieke-faq__contact-card h3 {
    margin-bottom: 0.35rem;
    color: var(--wieke-white);
    font-size: 1.05rem;
}

.wieke-faq__contact-card p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
}

.wieke-faq__contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
}

.wieke-faq__contact-card .wieke-link-arrow {
    color: var(--wieke-orange-light);
    font-size: 0.85rem;
}

.wieke-faq__list {
    display: grid;
    gap: 0.75rem;
}

.wieke-faq-item {
    overflow: hidden;
    border: 1px solid var(--wieke-border);
    border-radius: var(--wieke-radius-medium);
    background: var(--wieke-white);
    box-shadow: var(--wieke-shadow-small);
}

.wieke-faq-item[open] {
    border-color: rgba(235, 103, 9, 0.35);
}

.wieke-faq-item__question {
    display: flex;
    min-height: 5.2rem;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    color: var(--wieke-purple-dark);
    cursor: pointer;
    list-style: none;
    transition: background-color var(--wieke-transition);
}

.wieke-faq-item__question::-webkit-details-marker {
    display: none;
}

.wieke-faq-item__question:hover {
    background: var(--wieke-purple-soft);
}

.wieke-faq-item__number {
    color: var(--wieke-orange-dark);
    font-family: var(--wieke-font-heading);
    font-size: 0.82rem;
    font-weight: 900;
}

.wieke-faq-item__question-text {
    flex: 1 1 auto;
    font-weight: 750;
}

.wieke-faq-item__toggle {
    display: inline-flex;
    width: 2.3rem;
    height: 2.3rem;
    flex: 0 0 2.3rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--wieke-purple-light);
    color: var(--wieke-purple-dark);
    transition:
        background-color var(--wieke-transition),
        color var(--wieke-transition),
        transform var(--wieke-transition);
}

.wieke-faq-item[open] .wieke-faq-item__toggle {
    background: var(--wieke-orange);
    color: var(--wieke-white);
    transform: rotate(180deg);
}

.wieke-faq-item__answer {
    padding: 0 1.2rem 1.2rem 3.9rem;
    color: var(--wieke-text);
    font-size: 0.94rem;
    line-height: 1.7;
}

.wieke-faq-item__answer p {
    margin: 0;
}


/* =========================================================
   7. AFSLUITENDE CTA
   ========================================================= */

.wieke-final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: var(--wieke-section-space-small);
    background: var(--wieke-white);
}

.wieke-final-cta__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.wieke-final-cta__shape {
    position: absolute;
    border-radius: 50%;
}

.wieke-final-cta__shape--one {
    top: -5rem;
    left: -5rem;
    width: 14rem;
    height: 14rem;
    background: rgba(235, 103, 9, 0.05);
}

.wieke-final-cta__shape--two {
    right: -5rem;
    bottom: -5rem;
    width: 16rem;
    height: 16rem;
    border: 2rem solid rgba(89, 86, 115, 0.04);
}

.wieke-final-cta__panel {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(24rem, 0.68fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius:
        3rem 1rem 3rem 1rem;
    background:
        linear-gradient(
            125deg,
            var(--wieke-purple-darker) 0%,
            var(--wieke-purple-dark) 48%,
            var(--wieke-purple) 100%
        );
    color: var(--wieke-white);
    box-shadow: var(--wieke-shadow-large);
}

.wieke-final-cta__panel::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
    height: 0.45rem;
    border-radius: 0 0 0 var(--wieke-radius-pill);
    background: var(--wieke-orange);
    content: "";
}

.wieke-final-cta__title {
    max-width: 12ch;
    color: var(--wieke-white);
}

.wieke-final-cta__lead {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
}

.wieke-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

.wieke-final-cta__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}

.wieke-final-cta__highlights li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    font-weight: 650;
}

.wieke-final-cta__highlights svg {
    color: var(--wieke-orange-light);
}

.wieke-final-cta__visual {
    position: relative;
    z-index: 2;
}

.wieke-final-cta__route-card {
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius:
        1.5rem 1.5rem 0.35rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
}

.wieke-final-cta__route-point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wieke-final-cta__route-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--wieke-orange-light);
}

.wieke-final-cta__route-point div {
    display: flex;
    flex-direction: column;
}

.wieke-final-cta__route-point small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.wieke-final-cta__route-point strong {
    color: var(--wieke-white);
    font-size: 0.88rem;
}

.wieke-final-cta__route-progress {
    position: relative;
    display: flex;
    min-height: 6rem;
    align-items: center;
    justify-content: center;
}

.wieke-final-cta__route-progress-line {
    position: absolute;
    top: 50%;
    right: 1.4rem;
    left: 1.4rem;
    border-top: 2px dashed rgba(255, 255, 255, 0.22);
}

.wieke-final-cta__route-vehicle {
    position: relative;
    display: inline-flex;
    width: 4rem;
    height: 4rem;
    align-items: center;
    justify-content: center;
    border: 0.35rem solid var(--wieke-purple-dark);
    border-radius: 50%;
    background: var(--wieke-orange);
    color: var(--wieke-white);
}

.wieke-final-cta__personal-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--wieke-radius-medium);
    background: var(--wieke-white);
    box-shadow: var(--wieke-shadow-medium);
}

.wieke-final-cta__personal-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: var(--wieke-orange-light);
    color: var(--wieke-orange-dark);
}

.wieke-final-cta__personal-card div {
    display: flex;
    flex-direction: column;
}

.wieke-final-cta__personal-card strong {
    color: var(--wieke-purple-dark);
    font-size: 0.88rem;
}

.wieke-final-cta__personal-card span {
    color: var(--wieke-text-light);
    font-size: 0.74rem;
}


/* =========================================================
   8. ALGEMENE WORDPRESS-PAGINA'S
   ========================================================= */

.wieke-page__hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(4rem, 8vw, 6.5rem);
    background:
        linear-gradient(
            125deg,
            var(--wieke-purple-darker) 0%,
            var(--wieke-purple) 100%
        );
}

.wieke-page__hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.wieke-page__hero-shape {
    position: absolute;
    border-radius: 50%;
}

.wieke-page__hero-shape--one {
    top: -6rem;
    right: 10%;
    width: 15rem;
    height: 15rem;
    border: 2rem solid rgba(255, 255, 255, 0.04);
}

.wieke-page__hero-shape--two {
    bottom: -6rem;
    left: -3rem;
    width: 13rem;
    height: 13rem;
    background: rgba(235, 103, 9, 0.09);
}

.wieke-page__hero-route {
    position: absolute;
    right: 4%;
    bottom: 15%;
    width: 35%;
    border-top: 2px dashed rgba(255, 255, 255, 0.12);
}

.wieke-page__hero-inner {
    position: relative;
    z-index: 2;
}

.wieke-page__title {
    max-width: 16ch;
    margin-bottom: 0;
    color: var(--wieke-white);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.wieke-page__intro {
    max-width: 45rem;
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.08rem;
}

.wieke-page__content-section {
    padding-block: var(--wieke-section-space-small);
    background: var(--wieke-white);
}

.wieke-page__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(17rem, 0.32fr);
    align-items: start;
    gap: clamp(2.5rem, 6vw, 5rem);
}

.wieke-page__article {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--wieke-border);
    border-radius: var(--wieke-radius-large);
    background: var(--wieke-white);
    box-shadow: var(--wieke-shadow-small);
}

.wieke-page__sidebar {
    position: sticky;
    top: calc(var(--wieke-header-height) + 2rem);
    display: grid;
    gap: 1rem;
}

.wieke-page__sidebar-card,
.wieke-page__legal-navigation {
    padding: 1.3rem;
    border: 1px solid var(--wieke-border);
    border-radius: var(--wieke-radius-medium);
    background: var(--wieke-purple-soft);
}

.wieke-page__sidebar-card--transport {
    border-color: transparent;
    background: var(--wieke-purple-dark);
    color: var(--wieke-white);
}

.wieke-page__sidebar-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 0.9rem;
    background: var(--wieke-white);
    color: var(--wieke-orange-dark);
}

.wieke-page__sidebar-card h2,
.wieke-page__legal-navigation h2 {
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
}

.wieke-page__sidebar-card--transport h2 {
    color: var(--wieke-white);
}

.wieke-page__sidebar-card p {
    color: var(--wieke-text-light);
    font-size: 0.86rem;
}

.wieke-page__sidebar-card--transport p {
    color: rgba(255, 255, 255, 0.68);
}

.wieke-page__sidebar-actions {
    display: grid;
    gap: 0.8rem;
}

.wieke-page__legal-navigation ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wieke-page__legal-navigation li {
    margin: 0;
}

.wieke-page__legal-navigation a {
    color: var(--wieke-purple-dark);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.wieke-page__legal-navigation a:hover {
    color: var(--wieke-orange-dark);
}


/* =========================================================
   9. 404-PAGINA
   ========================================================= */

.wieke-error-page {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 74vh;
    padding-block: var(--wieke-section-space);
    background:
        linear-gradient(
            135deg,
            var(--wieke-purple-soft) 0%,
            var(--wieke-white) 56%,
            var(--wieke-orange-soft) 100%
        );
}

.wieke-error-page__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.wieke-error-page__shape {
    position: absolute;
    border-radius: 50%;
}

.wieke-error-page__shape--one {
    top: -5rem;
    right: -4rem;
    width: 16rem;
    height: 16rem;
    border: 2.2rem solid rgba(89, 86, 115, 0.05);
}

.wieke-error-page__shape--two {
    bottom: -5rem;
    left: -4rem;
    width: 14rem;
    height: 14rem;
    background: rgba(235, 103, 9, 0.06);
}

.wieke-error-page__route-line {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 35%;
    height: 45%;
    border-right: 2px dashed rgba(89, 86, 115, 0.13);
    border-bottom: 2px dashed rgba(89, 86, 115, 0.13);
    border-radius: 0 0 5rem 0;
}

.wieke-error-page__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(25rem, 0.7fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
}

.wieke-error-page__code {
    margin-bottom: 0.3rem;
    color: rgba(235, 103, 9, 0.17);
    font-family: var(--wieke-font-heading);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.8;
}

.wieke-error-page__title {
    max-width: 13ch;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.wieke-error-page__lead {
    max-width: 42rem;
    color: var(--wieke-text);
    font-size: 1.05rem;
}

.wieke-error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

.wieke-error-page__quick-links {
    margin-top: 2.5rem;
}

.wieke-error-page__quick-links h2 {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.wieke-error-page__quick-links ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wieke-error-page__quick-links li {
    margin: 0;
}

.wieke-error-page__quick-links a {
    display: flex;
    min-height: 6rem;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem;
    border: 1px solid var(--wieke-border);
    border-radius: var(--wieke-radius-medium);
    background: var(--wieke-white);
    text-decoration: none;
    transition:
        border-color var(--wieke-transition),
        box-shadow var(--wieke-transition),
        transform var(--wieke-transition);
}

.wieke-error-page__quick-links a:hover {
    border-color: var(--wieke-orange);
    box-shadow: var(--wieke-shadow-small);
    transform: translateY(-0.2rem);
}

.wieke-error-page__quick-icon {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 2.7rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    background: var(--wieke-purple-light);
    color: var(--wieke-purple-dark);
}

.wieke-error-page__quick-links a > span:last-child {
    display: flex;
    flex-direction: column;
}

.wieke-error-page__quick-links strong {
    color: var(--wieke-purple-dark);
    font-size: 0.82rem;
}

.wieke-error-page__quick-links small {
    color: var(--wieke-text-light);
    font-size: 0.7rem;
}

.wieke-error-page__visual {
    position: relative;
}

.wieke-error-page__route-card {
    padding: 1.5rem;
    border-radius:
        2rem 2rem 0.4rem 2rem;
    background:
        linear-gradient(
            145deg,
            var(--wieke-purple-dark) 0%,
            var(--wieke-purple) 100%
        );
    box-shadow: var(--wieke-shadow-large);
}

.wieke-error-page__route-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wieke-error-page__route-marker {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--wieke-orange-light);
}

.wieke-error-page__route-location > span:last-child {
    display: flex;
    flex-direction: column;
}

.wieke-error-page__route-location small {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.wieke-error-page__route-location strong {
    color: var(--wieke-white);
    font-size: 0.9rem;
}

.wieke-error-page__route-track {
    position: relative;
    display: flex;
    min-height: 8rem;
    align-items: center;
    justify-content: center;
}

.wieke-error-page__route-track-line {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    left: 1.5rem;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
}

.wieke-error-page__route-vehicle {
    position: relative;
    display: inline-flex;
    width: 5rem;
    height: 5rem;
    align-items: center;
    justify-content: center;
    border: 0.4rem solid var(--wieke-purple-dark);
    border-radius: 50%;
    background: var(--wieke-orange);
    color: var(--wieke-white);
}

.wieke-error-page__help-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 1rem 0 auto;
    padding: 1rem;
    border: 1px solid var(--wieke-border);
    border-radius: var(--wieke-radius-medium);
    background: var(--wieke-white);
    box-shadow: var(--wieke-shadow-medium);
}

.wieke-error-page__help-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: var(--wieke-orange-light);
    color: var(--wieke-orange-dark);
}

.wieke-error-page__help-card div {
    display: flex;
    flex-direction: column;
}

.wieke-error-page__help-card strong {
    color: var(--wieke-purple-dark);
    font-size: 0.82rem;
}

.wieke-error-page__help-card a {
    color: var(--wieke-orange-dark);
    font-weight: 750;
    text-decoration: none;
}