/* AV Delivery Sections Widget */
.av-delivery-sections-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    width: 100%;
}

.av-delivery-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

/* Elegant micro-interaction on hover */
.av-delivery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.av-delivery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e454b; /* Default deep green/teal from screenshot */
    font-size: 32px; /* Default size */
    transition: transform 0.3s ease;
}

.av-delivery-item:hover .av-delivery-icon {
    transform: scale(1.1);
}

.av-delivery-icon svg {
    width: 32px;
    height: 32px;
    fill: #1e454b;
    transition: transform 0.3s ease;
}

.av-delivery-content {
    display: flex;
    flex-direction: column;
}

.av-delivery-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e454b;
    margin-bottom: 2px;
    line-height: 1.2;
}

.av-delivery-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #555;
    line-height: 1.2;
}

/* Responsive Breakpoints */

/* Tablet (2x2 grid) */
@media (max-width: 991px) {
    .av-delivery-sections-wrapper {
        justify-content: center;
    }
    .av-delivery-item {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Mobile (1 item per row) */
@media (max-width: 767px) {
    .av-delivery-sections-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .av-delivery-item {
        flex: 1 1 100%;
        margin-bottom: 5px;
        background: #f9f9f9; /* Subtle background for list style on mobile */
    }
}
