/* Popular Services — Tools For Help (popularServices.ascx) */
.tb-services-section {
    padding: 28px 0 16px;
    background: #fff;
    border-top: 1px solid #eceef1;
}

.tb-services-header {
    margin-bottom: 20px;
}

.tb-services-title {
    margin: 0 0 6px;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 800;
    color: #12263a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.tb-services-subtitle {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.tb-services-carousel-wrap {
    position: relative;
    overflow: hidden;
    min-height: 1px;
}

.tb-services-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 10px;
    scrollbar-width: thin;
}

.tb-services-track::-webkit-scrollbar {
    height: 6px;
}

.tb-services-track::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 999px;
}

.tb-service-card {
    flex: 0 0 148px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    width: 148px;
    height: auto;
    background: #fff;
    border: 1px solid #eceef1;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #12263a;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.tb-service-card:hover,
.tb-service-card:focus {
    text-decoration: none;
    color: #12263a;
    border-color: #f5c6c7;
    box-shadow: 0 8px 24px rgba(36, 39, 44, .1);
    transform: translateY(-2px);
}

.tb-service-card-media {
    position: relative;
    height: 100px;
    overflow: hidden;
    background: #f8f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.tb-service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .25s ease;
}

.tb-service-card:hover .tb-service-card-media img {
    transform: scale(1.04);
}

.tb-service-card-title {
    display: block;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    color: #12263a;
    min-height: 52px;
}

@media (max-width: 767px) {
    .tb-services-section {
        padding: 20px 0 12px;
    }

    .tb-services-title {
        font-size: 1.35rem;
    }

    .tb-service-card {
        flex-basis: 132px;
        width: 132px;
    }

    .tb-service-card-media {
        height: 84px;
        padding: 10px;
    }

    .tb-service-card-title {
        font-size: 12px;
        min-height: 48px;
        padding: 10px 8px;
    }
}
