/*
|--------------------------------------------------------------------------
| RAV Recruitment Alert
|--------------------------------------------------------------------------
*/

.cew-rav-alert {
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: #F4F1DE;
}

.cew-rav-alert-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    max-width: 1200px;
    margin: auto;
    padding-left: 48px;
    padding-right: 48px;
}

/*
|--------------------------------------------------------------------------
| Lead (icon + message)
|--------------------------------------------------------------------------
*/

.cew-rav-alert-lead {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cew-rav-alert-icon {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px;
    border-radius: 999px;

    background-color: #8d4f17;
    color: #ffd0b0;
}

.cew-rav-alert-icon .material-symbols-outlined {
    font-size: 24px;
    line-height: 1;
}

.cew-rav-alert-text {
    font-size: 16px;
    line-height: 26px;
    color: #1a1c1c;
    margin: 0;
}

.cew-rav-alert-text span {
    font-weight: 700;
    color: #703900;
}

/*
|--------------------------------------------------------------------------
| Button
|--------------------------------------------------------------------------
*/

.cew-rav-alert-btn {
    flex-shrink: 0;

    display: inline-block;
    padding: 12px 32px;
    border: none;
    border-radius: 999px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;

    background-color: #703900;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;

    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10);
    transition: filter 0.3s ease, transform 0.1s ease;
}

.cew-rav-alert-btn:hover {
    filter: brightness(1.1);
}

.cew-rav-alert-btn:active {
    transform: scale(0.95);
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .cew-rav-alert-container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 16px;
        padding-right: 16px;
    }

    .cew-rav-alert-btn {
        width: 100%;
        text-align: center;
    }

}
