/* فاصل بصري بين أقسام — مشترك (مدونة + حجز) */

.article-section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0 24px;
    padding: 0 8px;
}

.article-section-divider__line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #94c5dc 50%, transparent);
    border-radius: 2px;
}

.article-section-divider__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #01305F 0%, #0089BF 100%);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 137, 191, 0.35);
    flex-shrink: 0;
}

.booking-details-panel .article-section-divider {
    margin: var(--bdp-space-lg, 1.25rem) 0 var(--bdp-space-md, 1rem);
    gap: 12px;
    padding: 0;
}

@media (min-width: 992px) {
    .article-layout__main .article-section-divider {
        margin: 40px 0 28px;
    }
}

@media (max-width: 767.98px) {
    .article-section-divider,
    .booking-details-panel .article-section-divider {
        margin: 24px 0 20px;
        gap: 12px;
    }

    .article-section-divider__icon,
    .booking-details-panel .article-section-divider__icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .article-section-divider {
        margin: 24px 0 20px;
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .article-section-divider__icon {
        box-shadow: 0 2px 8px rgba(0, 137, 191, 0.25);
    }
}
