﻿.bb-premade-topics-container {
    margin-top: calc(clamp(75px, 15vw, 120px) + 35px);
    margin-bottom: 35px;
}

.bb-premade-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, clamp(260px, 20vw, 380px));
    gap: 40px max(18px, 1.2vw);
    width: 100%;
    justify-content: center;
    padding: 10px 20px 60px 20px;
}

.bb-premade-topics-container .bb-service-card-title {
    font-size: 18px;
}

.bb-premade-topics-container .bb-service-card-description {
    min-height: unset;
    height: 80px;
}

.bb-premade-topics-container .bb-service-card-description {
    overflow: hidden;
    margin: 0 0 25px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.bb-premade-topics-title {
    color: var(--light-blue);
    font-weight: var(--bold-font-weight);
    text-align: center;
    font-size: clamp(18px, 1.3vw, 25px);
    padding: 0 20px 0 20px;
}

@media screen and (max-width: 1600px) {
    .bb-premade-topics-container {
        margin-top: calc(clamp(75px, 15vw, 120px) + 25px);
        margin-bottom: 25px;
    }
    .bb-premade-topics-container .bb-service-card-description {
        height: 60px;
    }
}

@media screen and (max-width: 486px) {
    .bb-premade-topics-grid {
        grid-template-columns: 100%;
    }
}