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

.hours-widget-body {
    margin: 0;
    background: transparent;
    font-family: Poppins, "DM Sans", system-ui, -apple-system, sans-serif;
    color: #4c5563;
    overflow: hidden;
}

.hours-widget {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hours-calc-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 476px;
}

.hours-calc {
    width: 318px;
    flex-shrink: 0;
    border: 1px solid #8f8f8f;
    border-right: none;
    border-radius: 10px 0 0 10px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 18px 36px rgba(16, 34, 55, 0.18);
    padding: 14px 12px 12px;
}

.hours-calc__brand {
    color: #d7d7d7;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 8px 2px;
}

.hours-calc__display {
    width: 100%;
    min-height: 45px;
    border: 0;
    border-radius: 7px;
    background: #d6eed5;
    color: #485664;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 10px 11px;
    outline: none;
}

.hours-calc__status {
    min-height: 18px;
    color: #7f8792;
    font-size: 0.58rem;
    font-weight: 700;
    margin: 6px 0 9px;
}

.hours-calc__status.is-error {
    color: #c53939;
}

.hours-calc__keys {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
}

.hours-calc__keys button {
    min-width: 0;
    min-height: 40px;
    border: 0;
    border-radius: 7px;
    background: #f1f1f1;
    color: #3f4956;
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.04);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.hours-calc__keys button:hover,
.hours-calc__tools button:hover,
.hours-popup-btn:hover {
    transform: translateY(-1px);
}

.hours-calc__keys .is-operator {
    background: #d9d9d9;
}

.hours-calc__keys .is-clear {
    color: #d675b9;
    font-weight: 900;
}

.hours-calc__keys .is-back {
    color: #008c6d;
    font-weight: 700;
}

.hours-calc__keys .is-equals {
    grid-row: span 2;
    background: linear-gradient(180deg, #69bd8b 0%, #55aa79 100%);
    color: #ffffff;
    font-weight: 900;
}

.hours-calc__tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border-top: 1px solid #d2d2d2;
    margin-top: 14px;
    padding-top: 11px;
}

.hours-calc__tools button {
    min-height: 48px;
    border: 0;
    border-radius: 4px;
    background: #ffffff;
    color: #666e79;
    cursor: pointer;
    font: inherit;
    font-size: 0.58rem;
    font-weight: 700;
    text-decoration: underline;
}

.hours-calc__tool-svg {
    display: block;
    width: 15px;
    height: 17px;
    margin: 0 auto 5px;
    fill: #69bd8b;
}

.hours-calc__tools small {
    display: block;
    margin-top: 2px;
    font-size: 0.58rem;
    font-weight: 500;
    text-decoration: none;
}

.hours-calc__tool-icon {
    display: block;
    width: 15px;
    height: 15px;
    margin: 0 auto 5px;
    color: #69bd8b;
    position: relative;
}

.hours-calc__tool-icon--days {
    border: 1px solid currentColor;
    border-radius: 2px;
    background:
        linear-gradient(currentColor, currentColor) 3px 5px / 9px 1px no-repeat,
        linear-gradient(currentColor, currentColor) 3px 9px / 9px 1px no-repeat,
        linear-gradient(currentColor, currentColor) 5px 3px / 1px 10px no-repeat,
        linear-gradient(currentColor, currentColor) 9px 3px / 1px 10px no-repeat;
}

.hours-calc__tool-icon--night::before,
.hours-calc__tool-icon--night::after {
    content: "";
    position: absolute;
    background: currentColor;
}

.hours-calc__tool-icon--night::before {
    width: 9px;
    height: 9px;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.hours-calc__tool-icon--night::after {
    width: 13px;
    height: 7px;
    left: 1px;
    bottom: 0;
    border-radius: 8px 8px 2px 2px;
}

.hours-calc__tool-icon--settings {
    border: 3px solid currentColor;
    border-radius: 50%;
}

/* ── Modal de Opções ──────────────────────────────────────── */
.hours-calc__modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(30, 40, 55, 0.52);
    align-items: center;
    justify-content: center;
}
.hours-calc__modal.is-open {
    display: flex;
}
.hours-calc__modal-box {
    width: min(272px, calc(100% - 32px));
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}
.hours-calc__modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px 11px;
    border-bottom: 1px solid #ebebeb;
}
.hours-calc__modal-header strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3f4956;
}
.hours-calc__modal-close {
    border: 0;
    background: none;
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    color: #8f9199;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background 0.15s ease, color 0.15s ease;
}
.hours-calc__modal-close:hover {
    background: #f1f1f1;
    color: #444;
}
.hours-calc__modal-body {
    padding: 14px 14px 10px;
}
.hours-calc__opt-desc {
    font-size: 0.78rem;
    font-weight: 600;
    color: #ff9900;
    margin: 0 0 8px;
}
.hours-calc__opt-row {
    display: flex;
    gap: 6px;
}
.hours-calc__opt-input {
    flex: 1;
    min-width: 0;
    height: 34px;
    border: 1px solid #d2d5db;
    border-radius: 6px;
    background: #f9fafb;
    color: #3f4956;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0 10px;
    outline: none;
    transition: border-color 0.18s ease;
}
.hours-calc__opt-input:focus {
    border-color: #69bd8b;
}
.hours-calc__opt-version {
    font-size: 0.66rem;
    color: #b0b5bd;
    margin: 8px 0 0;
}
.hours-calc__modal-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding: 10px 14px 14px;
    border-top: 1px solid #ebebeb;
}
.hours-calc__modal-btn {
    min-height: 32px;
    border: 0;
    border-radius: 6px;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0 16px;
    transition: background 0.18s ease, transform 0.18s ease;
}
.hours-calc__modal-btn.is-cancel {
    background: #e2e8f0;
    color: #4a5568;
}
.hours-calc__modal-btn.is-cancel:hover {
    background: #cbd5e0;
}
.hours-calc__modal-btn.is-save {
    background: linear-gradient(180deg, #69bd8b 0%, #55aa79 100%);
    color: #ffffff;
}
.hours-calc__modal-btn.is-save:hover {
    transform: translateY(-1px);
}

.hours-calc__history {
    flex: 1;
    min-width: 0;
    border: 1px solid #8f8f8f;
    border-radius: 0 10px 10px 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #f1f5f9 100%);
    box-shadow: 0 18px 36px rgba(16, 34, 55, 0.18);
    padding: 14px 10px 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hours-calc__history strong {
    display: block;
    border-bottom: 1px solid #d2d2d2;
    color: #747474;
    font-size: 0.78rem;
    font-weight: 900;
    padding-bottom: 5px;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hours-calc__history ul {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
}

.hours-history-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 5px 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #e8ecf0;
}

.hours-history-item__text {
    color: #5a6370;
    font-size: 0.62rem;
    line-height: 1.3;
    word-break: break-all;
}

.hours-history-item__restore {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    border: none;
    background: none;
    color: #55aa79;
    font: inherit;
    font-size: 0.60rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    text-decoration: underline;
    transition: color 0.15s ease;
}

.hours-history-item__restore:hover {
    color: #3d8c5f;
}

.hours-page-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 320px;
    margin: 0;
    background: #f7fafc;
    color: #6f7680;
    font-family: Poppins, "DM Sans", system-ui, -apple-system, sans-serif;
}

.hours-page {
    flex: 1 0 auto;
}

.hours-container {
    width: min(100% - 80px, 1180px);
    margin: 0 auto;
}

.hours-rh-header {
    height: 58px;
    background: #ffffff;
    border-bottom: 1px solid #e1e5eb;
}

.hours-rh-header__inner {
    height: 58px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.hours-rh-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #9d9d9d;
    text-decoration: none;
}

.hours-rh-brand img {
    width: 112px;
    height: auto;
    display: block;
}

.hours-rh-brand span {
    width: 3px;
    height: 26px;
    background: #ff9900;
}

.hours-rh-brand strong {
    color: #9d9d9d;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.hours-rh-nav {
    display: flex;
    justify-content: center;
    gap: 36px;
}

.hours-rh-nav a {
    color: #5d626a;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.hours-rh-nav a:first-child::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 8px;
    vertical-align: middle;
}

.hours-rh-actions {
    display: flex;
    gap: 10px;
}

.hours-rh-action {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    border-radius: 7px;
    background: #ff9900;
    color: #ffffff;
    padding: 5px 12px;
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.hours-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(36, 25, 55, 0.98) 0%, rgba(36, 25, 55, 0.98) 58%, rgba(31, 22, 48, 0.98) 100%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 18px);
    color: #ffffff;
    min-height: 250px;
    border-bottom: 1px solid rgba(36, 205, 188, 0.18);
}

.hours-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #24cdbc 0%, rgba(36, 205, 188, 0) 38%);
}

.hours-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 28px;
}

.hours-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 25px;
    border-radius: 3px;
    background: #24cdbc;
    color: #052a39;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

.hours-eyebrow span {
    width: 10px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 2px;
    background:
        linear-gradient(currentColor, currentColor) 2px 4px / 5px 1px no-repeat,
        linear-gradient(currentColor, currentColor) 2px 8px / 5px 1px no-repeat;
}

.hours-hero__line {
    width: 50px;
    height: 2px;
    background: #8f8a95;
    margin: 28px 0 22px;
}

.hours-hero h1 {
    max-width: 720px;
    margin: 0 0 14px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5vw, 3.45rem);
    font-weight: 900;
    line-height: 1.05;
}

.hours-hero p {
    max-width: 610px;
    margin: 0;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.45;
}

.hours-main {
    padding: 56px 0 78px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fafc 78%);
}

.hours-main__grid {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.hours-frame-card {
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
    box-shadow: 0 20px 50px rgba(19, 39, 67, 0.13);
    padding: 30px 24px 14px;
    position: relative;
}

.hours-frame-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(36, 205, 188, 0.12);
    border-radius: 10px;
    pointer-events: none;
}

.hours-frame {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
    position: relative;
    z-index: 1;
}

.hours-popup-btn {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff9900 0%, #f08a00 100%);
    color: #ffffff;
    margin-top: 10px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.24);
    position: relative;
    z-index: 1;
}

.hours-popup-btn span {
    font-size: 1rem;
}

.hours-guide {
    position: relative;
    padding: 30px 0 0 0;
}

.hours-guide::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 0;
    width: 34px;
    height: 1px;
    background: #777c83;
}

.hours-guide h2 {
    color: #24cdbc;
    font-size: clamp(1.75rem, 3vw, 2.08rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 18px 52px;
}

.hours-guide__item {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 22px;
    align-items: center;
    width: min(100%, 620px);
    margin-top: 18px;
    border: 1px solid #e3eaf1;
    border-radius: 14px;
    background: #ffffff;
    padding: 18px 20px 18px 16px;
    box-shadow: 0 12px 30px rgba(19, 39, 67, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hours-guide__item:hover {
    border-color: rgba(36, 205, 188, 0.45);
    box-shadow: 0 18px 38px rgba(19, 39, 67, 0.11);
    transform: translateY(-2px);
}

.hours-guide__icon {
    min-height: 92px;
    display: grid;
    place-items: center;
    border: 2px solid #d4d9df;
    border-radius: 12px;
    background: #f8fbfc;
    color: #777;
    box-shadow: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.hours-guide__item:hover .hours-guide__icon {
    border-color: #24cdbc;
    background: #effffb;
}

.hours-guide__svg {
    display: block;
    width: 34px;
    height: 38px;
    fill: #777;
}

.hours-guide__item h3 {
    color: #777d86;
    font-size: clamp(1.34rem, 2vw, 1.62rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 12px;
}

.hours-guide__item p,
.hours-guide__tip {
    max-width: 430px;
    color: #858b95;
    font-size: 0.95rem;
    line-height: 1.62;
    margin: 0;
}

.hours-guide__tip {
    max-width: 560px;
    margin-top: 22px;
    border-left: 4px solid #ff9900;
    border-radius: 0 10px 10px 0;
    background: #fff8ec;
    padding: 11px 14px;
}

.hours-guide__tip strong {
    color: #ff9900;
}

.hours-paper-banner {
    display: block;
    width: min(100%, 620px);
    margin-top: 26px;
    overflow: hidden;
    border-radius: 18px;
    background: #dddddd;
    text-decoration: none;
    position: relative;
    min-height: 205px;
    box-shadow: 0 18px 38px rgba(20, 30, 45, 0.11);
    user-select: none;
}

.hours-paper-banner img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 205px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.28s ease;
}

.hours-paper-banner:hover img {
    transform: scale(1.02);
}

.hours-paper-banner__copy {
    position: absolute;
    inset: 22px 30px 18px 42%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #59616c;
    line-height: 1.15;
}

.hours-paper-banner__title {
    color: #ff9900;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 900;
    font-style: italic;
    line-height: 0.92;
    text-transform: uppercase;
}

.hours-paper-banner__title strong {
    display: block;
    font-size: 1.42em;
    letter-spacing: 0;
}

.hours-paper-banner__text,
.hours-paper-banner__question {
    margin-top: 7px;
    font-size: 0.92rem;
}

.hours-paper-banner__text strong {
    display: block;
    color: #69717b;
    font-weight: 900;
}

.hours-paper-banner__link {
    margin-top: 13px;
    color: #003087;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 900;
    transition: color 0.2s ease;
}

.hours-paper-banner:hover .hours-paper-banner__link {
    color: #ff9900;
}

.hours-rh-footer {
    flex: 0 0 auto;
    background: #201833;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 26px 0 24px;
}

.hours-rh-footer__grid {
    width: min(100% - 80px, 900px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 230px 1fr 250px;
    gap: 56px;
    align-items: center;
}

.hours-rh-footer__brand {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hours-rh-footer__brand > strong {
    display: inline-block;
    align-self: flex-start;
    border-bottom: 3px solid #ff9900;
    color: #a4a0ad;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 72px;
}

.hours-rh-footer__support {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.hours-rh-footer__support span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.hours-rh-footer__support img {
    width: 94px;
    height: auto;
    display: block;
    filter: grayscale(1) brightness(0.7);
    opacity: 0.68;
}

.hours-rh-footer__brand a,
.hours-rh-footer__nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.hours-rh-footer__brand a {
    font-size: 0.82rem;
    font-weight: 600;
}

.hours-rh-footer__brand a:hover,
.hours-rh-footer__nav a:hover {
    color: #24cdbc;
}

.hours-rh-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-self: center;
}

.hours-rh-footer__nav > strong {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.hours-rh-footer__nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 500;
}

.hours-rh-footer__nav a span {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.hours-rh-footer__ad {
    display: block;
    justify-self: end;
    width: 250px;
    overflow: hidden;
    background: #2386dc;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hours-rh-footer__ad:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.hours-rh-footer__ad img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1020px) {
    .hours-container {
        width: min(100% - 40px, 920px);
    }

    .hours-rh-header__inner {
        grid-template-columns: 1fr auto;
    }

    .hours-rh-nav {
        display: none;
    }

    .hours-main__grid { grid-template-columns: 400px minmax(0, 1fr); }

    .hours-rh-footer__grid {
        width: min(100% - 40px, 820px);
        grid-template-columns: 1fr 1fr;
    }

    .hours-rh-footer__ad {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 820px) {
    .hours-rh-actions {
        display: none;
    }

    .hours-rh-header__inner {
        display: flex;
        justify-content: center;
    }

    .hours-main__grid {
        grid-template-columns: 1fr;
    }

    .hours-frame-card {
        width: min(100%, 430px);
        margin: 0 auto;
    }

    .hours-guide {
        padding-left: 0;
    }

    .hours-guide::before {
        left: 0;
    }

    .hours-guide h2 {
        margin-left: 50px;
    }

    .hours-paper-banner {
        width: 100%;
    }

    .hours-paper-banner__copy {
        left: 40%;
    }

    .hours-rh-footer__grid {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .hours-rh-footer__brand {
        min-height: auto;
        align-items: center;
    }

    .hours-rh-footer__brand > strong {
        align-self: center;
        margin-bottom: 30px;
    }

    .hours-rh-footer__nav {
        justify-self: center;
        align-items: center;
    }
}

@media (max-width: 560px) {
    .hours-container {
        width: min(100% - 28px, 390px);
    }

    .hours-rh-brand img {
        width: 94px;
    }

    .hours-rh-brand strong {
        font-size: 1.12rem;
    }

    .hours-hero {
        min-height: 238px;
    }

    .hours-hero__inner {
        min-height: 238px;
    }

    .hours-frame-card {
        padding: 16px 10px 10px;
    }

    .hours-frame { height: 520px; }

    .hours-guide__item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .hours-guide__icon {
        min-height: 92px;
    }

    .hours-paper-banner {
        min-height: 178px;
    }

    .hours-paper-banner img {
        min-height: 178px;
    }

    .hours-paper-banner__copy {
        inset: 16px 18px 14px 38%;
    }

    .hours-paper-banner__text,
    .hours-paper-banner__question {
        font-size: 0.78rem;
    }

    .hours-rh-footer {
        padding: 32px 0;
    }

    .hours-rh-footer__grid {
        width: min(100% - 28px, 390px);
    }

    .hours-rh-footer__ad {
        width: min(100%, 250px);
    }
}

@media (max-width: 420px) {
    .hours-calc-wrapper {
        flex-direction: column;
        max-width: 318px;
    }

    .hours-calc {
        width: 100%;
        border-right: 1px solid #8f8f8f;
        border-bottom: none;
        border-radius: 10px 10px 0 0;
    }

    .hours-calc__history {
        border-radius: 0 0 10px 10px;
        max-height: 130px;
        overflow-y: auto;
    }
}
