/* ============================================================
   Block: Benefits
   ============================================================ */
.dryve-benefits {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.dryve-benefits-inner {
    max-width: var(--dryve-site-width, 1400px);
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.dryve-benefits-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: var(--dryve-site-width, 1400px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.dryve-benefits-title {
    /* font-size: 32px; -- inherited from branding */
    /* font-weight: 700; -- inherited from branding */
    margin-bottom: 16px;
}

.dryve-benefits-intro {
    font-size: 16px;
    color: #666;
}

.dryve-benefits-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.dryve-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dryve-benefit-item {
    display: flex;
    gap: 16px;
}

.dryve-benefit-icon {
    color: var(--dryve-primary, #004AAD);
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.dryve-benefit-heading {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.dryve-benefit-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.dryve-benefits-media img {
    width: 100%;
    border-radius: var(--dryve-image-radius, 8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .dryve-benefits-content {
        grid-template-columns: 1fr;
    }

    .dryve-benefits-media {
        order: -1;
    }
    .dryve-benefits-content {
    	display: block!important;
    }
    
}