/**
 * Copyright © Figevida. All rights reserved.
 *
 * Plain css on purpose: the theme purges the tailwind classes it does not find
 * in its own templates, so utility classes written here would be stripped out.
 */
.fig-notice {
    background: #fbdde2;
    color: #6b1220;
    text-align: center;
}

.fig-notice__text {
    margin: 0;
    line-height: 1.4;
}

/* Full width strip above the header. */
.fig-notice--bar {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
}

/* Boxed version used inside a page, next to a button. */
.fig-notice--box {
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
}

@media (max-width: 640px) {
    .fig-notice--bar {
        padding: 8px 12px;
        font-size: 13px;
    }

    .fig-notice--box {
        font-size: 14px;
    }
}
