.thsn-sub-header {
    background: #f6f6f6;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e8eaef;
    padding: 15px 0;
}

.thsn-sub-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Tablet */
@media (max-width: 992px) {
    .thsn-sub-header {
        padding: 12px 0;
    }

    .thsn-sub-header-inner {
        gap: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .thsn-sub-header {
        padding: 10px 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .thsn-sub-header {
        padding: 8px 0;
    }

    .thsn-sub-header-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
    }
}