/*
Theme Name: Blocksy Child
Description: Child theme for Blocksy
Template: blocksy
Version: 1.0.0
*/

/* Minimal child theme styles - customizer friendly */

/* Пагінація на мобільних */
@media (max-width: 768px) {
    .pagination-wrapper {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }
    
    .page-numbers {
        padding: 15px 20px !important;
        margin: 0 !important;
        font-size: 16px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        background: #f1f1f1 !important;
        border-radius: 8px !important;
        color: #333 !important;
    }
    
    /* Обрізання опису на мобільних */
    .combo-description {
        max-height: 55px !important;
        overflow: hidden !important;
        position: relative !important;
        transition: max-height 0.3s ease !important;
    }
    
    .combo-description.expanded {
        max-height: none !important;
    }
    
    .read-more-btn {
        color: #333 !important;
        border: none !important;
        padding: 2px 8px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        cursor: pointer !important;
    }
}

@media (min-width: 769px) {
    .read-more-btn {
        display: none !important;
    }
}

.btn-center {
    text-align: center !important;
    margin: 4px 0 !important;
    display: block !important;
}

.read-more-btn {
    display: inline-block !important;
}

.companies-section {
    scroll-margin-top: 35px;
}