/* Alerta despacho Librería Woody - Home y Catálogo */
.woody-shipping-alert {
    width: min(1180px, 92%);
    margin: 30px auto 30px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid #eadfc8;
    border-left: 7px solid #f26938;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(242, 105, 56, .16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fff8ea 100%);
    box-shadow: 0 18px 42px rgba(31, 78, 121, .10);
    color: #102033;
}

.woody-shipping-alert__icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #17466b 0%, #1f4e79 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(23, 70, 107, .22);
}

.woody-shipping-alert__content {
    min-width: 0;
}

.woody-shipping-alert__label {
    display: inline-flex;
    width: max-content;
    margin-bottom: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    background: #fff0de;
    color: #f26938;
    font-size: .86rem;
    font-weight: 900;
}

.woody-shipping-alert__content strong {
    display: block;
    color: #17466b;
    font-size: clamp(1.08rem, 2vw, 1.34rem);
    font-weight: 900;
    line-height: 1.22;
    margin-bottom: 4px;
}

.woody-shipping-alert__content p {
    margin: 0;
    color: #526579;
    line-height: 1.55;
    font-size: 1rem;
}

.woody-shipping-alert__content b {
    color: #f26938;
    font-weight: 900;
}

.catalogo-page .woody-shipping-alert {
    width: 100%;
    margin: 22px 0 24px;
}

@media (max-width: 768px) {
    .woody-shipping-alert {
        width: calc(100% - 32px);
        margin: 22px auto;
        padding: 16px;
        align-items: flex-start;
        border-radius: 20px;
        gap: 13px;
    }

    .woody-shipping-alert__icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 16px;
    }

    .woody-shipping-alert__content p {
        font-size: .94rem;
    }

    .catalogo-page .woody-shipping-alert {
        width: 100%;
        margin: 20px 0 22px;
    }
}

@media (max-width: 480px) {
    .woody-shipping-alert {
        flex-direction: column;
    }

    .woody-shipping-alert__icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }
}
