.jester-footer {
    width: 100%;
    background: var(--color-white);
    color: var(--color-gray-5);
}

.jester-footer-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(260px, 38vw, 540px);
    padding: var(--space-xl) var(--space-m);
    padding-top:0;
    background: var(--color-white);
}

.jester-footer-badge {
    width: clamp(150px, 15vw, 200px);
    color: var(--color-black, var(--color-gray-5));
}

.jester-footer-badge svg {
    display: block;
    width: 100%;
    height: auto;
}

.jester-footer-main {
    background: var(--color-gray-1);
    padding: 4vw;
}

.jester-footer-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(32px, 6vw, 96px);
    max-width: 1600px;
    margin: 0 auto;
}

.jester-footer-col {
    min-width: 0;
}

.jester-footer-heading {
    margin: 0 0 var(--space-l);
    font-family: var(--font-noodle);
    font-size: var(--typo-h3-fs);
    line-height: var(--typo-h3-lh);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-gray-5);
}

.jester-footer-address,
.jester-footer-contact-links {
    font-family: var(--font-noodle);
    font-size: var(--typo-h3-fs);
    line-height: var(--typo-h3-lh);
    font-weight: 400;
    text-transform: uppercase;
}

.jester-footer-address p {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.jester-footer-contact-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: var(--space-l);
}

.jester-footer a {
    color: currentColor;
    text-decoration: none;
}

.jester-footer a:hover {
    text-decoration: underline;
}

.jester-footer-opening-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.jester-footer-opening-row {
    display: flex;
    gap: 4px;
    font-family: var(--font-body);
    font-size: var(--typo-small-fs);
    line-height: var(--typo-small-lh);
    font-weight: 400;
}

.jester-footer-opening-row span:first-child {
    font-weight: 700;
}

.jester-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.jester-footer-links a {
    font-family: var(--font-body);
    font-size: var(--typo-small-fs);
    line-height: var(--typo-small-lh);
    font-weight: 400;
}

.jester-footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-m);
}

.jester-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--color-gray-5);
}

.jester-footer-socials svg {
    display: block;
    width: 100%;
    height: 100%;
}

.jester-footer-socials svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .jester-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .jester-footer-badge-wrap {
        min-height: 280px;
        padding: var(--space-xl) 24px;
    }

    .jester-footer-main {
        padding: var(--space-xl) 24px var(--space-l);
    }

    .jester-footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .jester-footer-heading {
        margin-bottom: var(--space-m);
    }

    .jester-footer-contact-links {
        margin-top: var(--space-m);
    }

    .jester-footer-socials {
        flex-direction: row;
        gap: var(--space-m);
    }
}

.jester-footer-address,
.jester-footer-contact-links {
    line-height: 1.08;
}

.jester-footer-address p {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.jester-footer-address br + br {
    display: block;
    content: "";
    margin-top: 0.25em;
}

.jester-footer-address .text-sup {
    display: inline-block;
    position: relative;
    top: -0.45em;
    font-size: 0.6em;
    line-height: 1;
    vertical-align: baseline;
    margin-left: 0.12em;
}