/**
 * Homepage Value Props Bar Styles
 *
 * Mobile-first styles for the value propositions bar:
 * Free Shipping, Easy Returns, Fully Buoyant, Austin Texas.
 */

/* ==========================================================================
   VALUE PROPS BAR
   ========================================================================== */

.value-props {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, #1A5F82 100%);
    padding: 0;
}

@media (min-width: 768px) {
    .value-props {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-smooth);
}

/* Top-left and top-right get right borders on mobile 2-col */
.value-prop:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.value-prop:hover {
    background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .value-prop {
        gap: 16px;
        padding: 32px 24px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .value-prop:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .value-prop:last-child {
        border-right: none;
    }
}

@media (min-width: 1280px) {
    .value-prop {
        padding: 32px 30px;
    }
}

/* Icon container */
.value-prop__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

@media (min-width: 768px) {
    .value-prop__icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }
}

.value-prop__icon svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .value-prop__icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Text */
.value-prop__text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .value-prop__text h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }
}

.value-prop__text p {
    font-size: 11px;
    color: var(--ocean-pale);
    line-height: 1.4;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .value-prop__text p {
        font-size: 13px;
    }
}
