/* ==========================================================================
   OhMyBread Homepage Styles
   Loaded conditionally on front page only (enqueued in functions.php)
   ========================================================================== */

/* --- Variables --- */
:root {
    --omb-coral: #FF6B6B;
    --omb-navy: #2C3E50;
    --omb-rose-powder: #FFE5E5;
    --omb-cream: #FFF8F3;
    --omb-gray: #666;
    --omb-light-gray: #F5F5F5;
    --omb-green: #2c662d;
}

/* --- Base / Utilities --- */
.omb-badge {
    display: inline-block;
    background: var(--omb-rose-powder);
    color: var(--omb-coral);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.omb-highlight {
    color: var(--omb-coral);
}

.omb-section-title {
    font-size: 2rem;
    color: var(--omb-navy);
    margin-bottom: 0.5rem;
}

.omb-section-subtitle {
    color: var(--omb-gray);
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .omb-section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .omb-section-title {
        font-size: 3rem;
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.omb-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.omb-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Hero Section --- */
.omb-hero {
    background: linear-gradient(135deg, var(--omb-rose-powder) 0%, var(--omb-cream) 100%);
    padding: 3rem 1.5rem;
    text-align: center;
}

.omb-badge--animated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--omb-coral);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.omb-hero h1,
.omb-hero .omb-hero__title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--omb-navy);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.omb-hero__subtitle {
    font-size: 1.1rem;
    color: var(--omb-gray);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

@media (min-width: 768px) {
    .omb-hero {
        padding: 5rem 2rem;
    }

    .omb-hero h1,
    .omb-hero .omb-hero__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .omb-hero h1,
    .omb-hero .omb-hero__title {
        font-size: 3.5rem;
    }
}

/* --- Product Cards --- */
.omb-product-cards {
    max-width: 1200px;
    margin: 0 auto;
}

.omb-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.omb-product-card:nth-child(1) { animation-delay: 0.5s; }
.omb-product-card:nth-child(2) { animation-delay: 0.6s; }
.omb-product-card:nth-child(3) { animation-delay: 0.7s; }

.omb-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.25);
}

.omb-product-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.omb-product-card__image-wrapper {
    height: 200px;
    background: var(--omb-light-gray);
    position: relative;
    overflow: hidden;
}

.omb-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.omb-product-card:hover .omb-product-card__image {
    transform: scale(1.05);
}

.omb-product-card__name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--omb-navy);
    margin-bottom: 0.5rem;
    padding: 1.5rem 1.5rem 0;
}

.omb-product-card__description {
    color: var(--omb-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
    padding: 0 1.5rem;
}

.omb-product-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--omb-coral);
    padding: 0 1.5rem 1rem;
}

.omb-product-card__order-btn {
    background: var(--omb-coral);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--omb-coral);
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin: 0 1.5rem 1.5rem;
    display: block;
    font-size: inherit;
    font-family: inherit;
}

.omb-product-card:hover .omb-product-card__order-btn {
    background: var(--omb-navy);
    border-color: var(--omb-navy);
    transform: scale(1.05);
}

/* Browse shop card variant */
.omb-product-card--browse .omb-product-card__order-btn {
    background: white;
    color: var(--omb-coral);
    text-decoration: none;
}

/* FIX 2 — Override Woostify global 'a' color on browse button */
a.omb-product-card__order-btn.omb-product-card__order-btn--link {
    color: var(--omb-coral);
}

a.omb-product-card__order-btn.omb-product-card__order-btn--link:hover {
    color: white;
}

.omb-product-card--browse:hover .omb-product-card__order-btn {
    background: var(--omb-navy);
    border-color: var(--omb-navy);
    color: white;
    transform: scale(1.05);
}

.omb-product-card__order-btn--link {
    display: block;
    text-decoration: none;
}

/* Quantity Selector */
.omb-product-card__qty-selector {
    margin: 0 1.5rem 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--omb-light-gray);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.omb-product-card__qty-selector.active {
    opacity: 1;
    max-height: 200px;
}

.omb-product-card__qty-selector .quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.omb-qty-minus,
.omb-qty-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--omb-coral);
    color: white;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.omb-qty-minus:hover,
.omb-qty-plus:hover {
    background: var(--omb-navy);
    transform: scale(1.1);
}

.omb-qty-minus:active,
.omb-qty-plus:active {
    transform: scale(0.95);
}

.omb-qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--omb-navy);
    border: 2px solid var(--omb-light-gray);
    border-radius: 8px;
    background: white;
}

.omb-qty-confirm {
    width: 100%;
    background: var(--omb-coral);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--omb-coral);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: inherit;
}

.omb-qty-confirm:hover {
    background: var(--omb-navy);
    border-color: var(--omb-navy);
    transform: scale(1.02);
}

/* NL-specific: hide WC "View cart" link after native AJAX add */
.omb-product-card[data-use-wc-ajax="true"] .added_to_cart {
    display: none !important;
}

/* Product cards responsive */
@media (min-width: 768px) {
    .omb-product-cards .wp-block-columns {
        gap: 2rem;
        align-items: stretch;
    }

    .omb-product-card__image-wrapper {
        height: 220px;
    }
}

@media (min-width: 1024px) {
    .omb-product-card__image-wrapper {
        height: 250px;
    }
}

/* --- Delivery Zones --- */
.omb-delivery-zones {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fdf2f1 100%);
    text-align: center;
}

.omb-delivery-zones__content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Delivery Search Widget */
.omb-delivery-search {
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
}

.omb-delivery-search__input-wrapper {
    position: relative;
}

.omb-delivery-search__input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--omb-light-gray);
    border-radius: 50px;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.omb-delivery-search__input:focus {
    border-color: var(--omb-coral);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.omb-delivery-search__icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--omb-coral);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.omb-delivery-search__results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
    margin-top: 0.75rem;
}

.omb-delivery-search__results.active {
    display: block;
}

.omb-delivery-search__result-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--omb-light-gray);
    transition: background 0.2s ease;
    text-align: center;
}

.omb-delivery-search__result-item:hover {
    background: var(--omb-cream);
}

.omb-delivery-search__result-item:last-child {
    border-bottom: none;
}

.omb-delivery-search__result-commune {
    color: var(--omb-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.omb-delivery-search__result-success {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.omb-delivery-search__result-postal {
    font-size: 0.85rem;
    color: var(--omb-coral);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.omb-delivery-search__shop-btn {
    padding: 0.7rem 1.5rem;
    background: var(--omb-coral);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.omb-delivery-search__shop-btn:hover {
    background: var(--omb-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    color: white;
}

.omb-delivery-search__not-found {
    padding: 1.5rem;
    text-align: center;
}

.omb-delivery-search__not-found .omb-delivery-search__result-commune {
    color: var(--omb-gray);
    margin-bottom: 1rem;
}

.omb-delivery-search__waitlist-btn {
    padding: 0.8rem 1.75rem;
    background: var(--omb-coral);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    font-family: inherit;
}

.omb-delivery-search__waitlist-btn:hover {
    background: var(--omb-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Delivery Info Box */
.omb-delivery-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.omb-delivery-info h3 {
    font-size: 1.5rem;
    color: var(--omb-navy);
    margin-bottom: 1rem;
}

.omb-delivery-info p {
    font-size: 1rem;
    color: var(--omb-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.omb-delivery-info .wp-block-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FIX 3 — Remove double-border on delivery info buttons */
.omb-delivery-info .wp-block-button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.omb-delivery-info .wp-block-button__link.wp-element-button {
    border: none;
}

.omb-delivery-info .omb-btn--secondary .wp-block-button__link.wp-element-button {
    border: 2px solid var(--omb-coral);
}

.omb-btn--primary,
.omb-btn--primary .wp-block-button__link {
    padding: 0.9rem 2rem;
    background: var(--omb-coral) !important;
    color: white !important;
    border: none;
    border-radius: 50px !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.omb-btn--primary:hover,
.omb-btn--primary .wp-block-button__link:hover {
    background: var(--omb-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    color: white !important;
}

.omb-btn--secondary,
.omb-btn--secondary .wp-block-button__link {
    padding: 0.9rem 2rem;
    background: white !important;
    color: var(--omb-coral) !important;
    border: 2px solid var(--omb-coral) !important;
    border-radius: 50px !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.omb-btn--secondary:hover,
.omb-btn--secondary .wp-block-button__link:hover {
    background: var(--omb-coral) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* --- Stats Bar --- */
.omb-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.omb-stats-bar__item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.omb-stats-bar__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.omb-stats-bar__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--omb-coral);
    margin-bottom: 0.5rem;
    line-height: 1;
    display: block;
}

.omb-stats-bar__label {
    font-size: 0.9rem;
    color: var(--omb-gray);
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

@media (max-width: 968px) {
    .omb-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .omb-delivery-zones {
        padding: 3rem 1rem;
    }

    .omb-stats-bar {
        grid-template-columns: 1fr;
    }

    .omb-delivery-info {
        padding: 2rem 1.5rem;
    }

    .omb-delivery-info .wp-block-buttons {
        flex-direction: column;
    }

    .omb-btn--primary .wp-block-button__link,
    .omb-btn--secondary .wp-block-button__link {
        width: 100%;
    }
}

/* --- How It Works --- */
.omb-how-it-works {
    padding: 4rem 1.5rem;
    background: var(--omb-cream);
    text-align: center;
}

.omb-steps {
    text-align: left;
}

.omb-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.omb-step__number {
    width: 60px;
    height: 60px;
    background: var(--omb-coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin: 0 auto 0.5rem;
    line-height: 60px;
    text-align: center;
}

.omb-step:hover .omb-step__number {
    transform: scale(1.1) rotate(5deg);
}

.omb-step h3 {
    font-size: 1.3rem;
    color: var(--omb-navy);
    margin-bottom: 0.5rem;
}

.omb-step p:not(.omb-step__number) {
    color: var(--omb-gray);
    line-height: 1.6;
}

/* FIX 4 — Align step descriptions by fixing title height */
@media (min-width: 768px) {
    .omb-step h3 {
        min-height: 3em;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .omb-step__number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        line-height: 70px;
    }

    .omb-step h3 {
        font-size: 1.5rem;
    }
}

/* --- Testimonials --- */
.omb-testimonials {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--omb-cream) 0%, white 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.omb-testimonials::before {
    content: '\1F4AC';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 300px;
    opacity: 0.03;
    pointer-events: none;
}

.omb-testimonials__grid {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
}

/* FIX 5 — Equal-height testimonial cards */
.omb-testimonial-card {
    background: white;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.omb-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: var(--omb-rose-powder);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.omb-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.15);
    border-color: var(--omb-coral);
}

/* Belgian flag badge */
.omb-testimonial-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
    background: linear-gradient(to right,
        #000000 0%, #000000 33.33%,
        #FDDA24 33.33%, #FDDA24 66.66%,
        #EF3340 66.66%, #EF3340 100%
    );
    font-size: 0;
    line-height: 0;
}

.omb-testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--omb-navy);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.omb-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--omb-light-gray);
}

.omb-testimonial-card__avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--omb-coral), #FF8E8E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    line-height: 45px;
    text-align: center;
}

.omb-testimonial-card__name {
    font-weight: 700;
    color: var(--omb-navy);
    font-size: 0.95rem;
}

.omb-testimonial-card__stars {
    color: var(--omb-coral);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

@media (min-width: 1024px) {
    .omb-testimonial-card {
        padding: 2rem;
    }

    .omb-testimonial-card__quote {
        font-size: 1.05rem;
    }
}

/* --- Continue Shopping button (injected by JS into cart sidebar) --- */
.omb-continue-shopping {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    margin-top: 0.5rem;
    background: white;
    color: var(--omb-coral);
    border: 2px solid var(--omb-coral);
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.omb-continue-shopping:hover {
    background: var(--omb-coral);
    color: white;
}

/* ==========================================================================
   Livraison page — hide waitlist block on desktop (guest only, redundant
   with commune checker). Mobile override in mobile.css media query.
   ========================================================================== */
.omb-livraison-waitlist {
    display: none;
}

/* ==========================================================================
   Refer-a-Friend Banner (RAFCTA)
   Slim CTA banner at the top of homepage, before hero section.
   ========================================================================== */

.omb-raf-banner {
    background: linear-gradient(135deg, var(--omb-rose-powder) 0%, #FFF0F0 100%);
    border-bottom: 1px solid rgba(255, 107, 107, 0.15);
    padding: 0;
    margin: 1.5rem 0 1rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle left accent bar */
.omb-raf-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--omb-coral);
}

.omb-raf-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 0.65rem 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Override Gutenberg flex layout defaults */
.omb-raf-banner .wp-block-group.omb-raf-banner__inner {
    gap: 0.5rem 1rem;
    padding: 0.65rem 1.25rem;
}

.omb-raf-banner__text {
    margin: 0 !important;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--omb-navy);
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.omb-raf-banner__icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--omb-coral);
}

.omb-raf-banner__icon svg {
    width: 16px;
    height: 16px;
}

.omb-raf-banner__cta {
    margin: 0 !important;
}

.omb-raf-banner__cta a {
    display: inline-block;
    background: var(--omb-coral);
    color: #fff !important;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    line-height: 1.4;
}

.omb-raf-banner__cta a:hover {
    background: #e55a5a;
    transform: translateY(-1px);
}

.omb-raf-banner__cta a:active {
    transform: translateY(0);
}

/* --- Mobile adjustments --- */

/* Small phones */
@media (max-width: 479px) {
    .omb-raf-banner__inner,
    .omb-raf-banner .wp-block-group.omb-raf-banner__inner {
        padding: 0.55rem 1rem;
        gap: 0.35rem 0.75rem;
    }

    .omb-raf-banner__text {
        font-size: 0.82rem;
        text-align: center;
    }

    .omb-raf-banner__cta a {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}

/* Tablets and up */
@media (min-width: 768px) {
    .omb-raf-banner__text {
        font-size: 0.95rem;
    }

    .omb-raf-banner__cta a {
        font-size: 0.85rem;
        padding: 0.35rem 1rem;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .omb-raf-banner__inner,
    .omb-raf-banner .wp-block-group.omb-raf-banner__inner {
        padding: 0.7rem 2rem;
    }
}