/* Hartwell Publishers — cookie consent bar */
.hwp-cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483000;
    padding: 14px 16px;
    background: #020f14;
    color: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.28);
    transform: translateY(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, visibility 0.35s ease;
}

.hwp-cookie-bar.is-visible {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.hwp-cookie-bar.hwp-cookie-bar--dismissed {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.hwp-cookie-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 20px;
    padding-right: 72px;
}

.hwp-cookie-bar__title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.hwp-cookie-bar__desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
}

.hwp-cookie-bar__desc a {
    color: #d4b896;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hwp-cookie-bar__desc a:hover,
.hwp-cookie-bar__desc a:focus {
    color: #fff;
}

.hwp-cookie-bar__accept {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    min-width: 120px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    background: #aa7a4a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.hwp-cookie-bar__accept:hover,
.hwp-cookie-bar__accept:focus {
    background: #966f42;
    outline: none;
}

.hwp-cookie-bar__accept:active {
    transform: scale(0.98);
}

body.hwp-cookie-pending .hwp-whatsapp-float {
    bottom: 120px;
}

@media only screen and (max-width: 767px) {
    body.hwp-cookie-pending .hwp-whatsapp-float {
        bottom: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .hwp-cookie-bar {
        padding: 12px 14px 16px;
    }

    .hwp-cookie-bar__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        padding-right: 0;
    }

    .hwp-cookie-bar__accept {
        width: 100%;
    }
}

#cookies-overlay {
    display: none !important;
}
