/**
 * Inspira Woo Add-ons — Product Disclaimers frontend styles.
 *
 * Renders on single product pages below the short description AND
 * optionally inside the Quick View drawer body. Each disclaimer is a
 * .iwa-product-disclaimer block; multiple blocks stack vertically
 * inside a .iwa-product-disclaimers wrapper.
 */

.iwa-product-disclaimers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0;
}

.iwa-product-disclaimer {
    padding: 12px 14px;
    background: #fdf6ef;
    border-left: 3px solid #d1a177;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    color: #3c3530;
}

.iwa-product-disclaimer__title {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 14px;
    color: #2a2520;
    letter-spacing: 0.005em;
}

.iwa-product-disclaimer__body {
    /* Default content styling — themes inherit type ramp from .price /
       .woocommerce-product-details__short-description neighbors. Body
       was wp_kses_post'd at save-time, so the inner HTML can include
       <strong>, <em>, <a>, <br>, <p>, <ul>, <ol>, <li>, and the rest
       of WordPress's post allowlist. */
    color: inherit;
}

.iwa-product-disclaimer__body :first-child {
    margin-top: 0;
}

.iwa-product-disclaimer__body :last-child {
    margin-bottom: 0;
}

.iwa-product-disclaimer__body a {
    color: #b6794f;
    text-decoration: underline;
}

.iwa-product-disclaimer__body a:hover {
    color: #8d5a36;
}
