/**
 * About Us Page - Sales & Ownership Section Mobile Text Color Fix
 * Ensures the sales paragraph text is black on mobile devices
 * ID-based selector for specific targeting
 */

/* Mobile specific (max-width: 767px) */
@media only screen and (max-width: 767px) {
    /* Target the Sales & Ownership section paragraph with specific ID */
    #sales-ownership-section .content-box p,
    #sales-ownership-section .content-box p strong,
    #sales-ownership-section .content-box h2,
    #sales-ownership-section .content-box h2 strong,
    #sales-ownership-section .content-box .year,
    #sales-ownership-section .content-box span.year,
    #sales-ownership-section .content-box a,
    #sales-ownership-section .content-box .theme-btn,
    #sales-ownership-section .content-box .theme-btn.btn-one,
    /* Fallback selectors for Sales section */
    .history-section .inner-box:nth-child(2) .content-box p,
    .history-section .inner-box:nth-child(2) .content-box p strong,
    .history-section .inner-box:nth-child(2) .content-box h2,
    .history-section .inner-box:nth-child(2) .content-box h2 strong,
    .history-section .inner-box:nth-child(2) .content-box .year,
    .history-section .inner-box:nth-child(2) .content-box span.year,
    .history-section .inner-box:nth-child(2) .content-box a,
    .history-section .inner-box:nth-child(2) .content-box .theme-btn,
    .history-section .inner-box:nth-child(2) .content-box .theme-btn.btn-one {
        color: #000000 !important;
    }
}

/* Tablet specific (768px - 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #sales-ownership-section .content-box p,
    #sales-ownership-section .content-box p strong,
    #sales-ownership-section .content-box h2,
    #sales-ownership-section .content-box h2 strong,
    .history-section .inner-box:nth-child(2) .content-box p,
    .history-section .inner-box:nth-child(2) .content-box p strong,
    .history-section .inner-box:nth-child(2) .content-box h2,
    .history-section .inner-box:nth-child(2) .content-box h2 strong {
        color: #000000 !important;
    }
}
