/* BIOTTER - záložka podpory produktu */

.biotter-support-pane {
    padding: 28px 0 10px;
    color: #17384A;
}

.biotter-support-detail {
    max-width: 100%;
}

.biotter-support-kicker {
    margin-bottom: 7px;
    color: #087F83;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.biotter-support-detail h2 {
    margin: 0 0 10px;
    color: #17384A;
    font-size: 27px;
    line-height: 1.25;
}

.biotter-support-lead {
    max-width: 820px;
    margin: 0 0 24px;
    color: #607783;
    font-size: 15px;
    line-height: 1.65;
}

.biotter-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.biotter-support-card {
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #DDE9EA;
    border-radius: 11px;
    background: #FFFFFF;
}

.biotter-support-card strong {
    display: block;
    margin-bottom: 6px;
    color: #17384A;
    font-size: 15px;
}

.biotter-support-card span {
    color: #607783;
    font-size: 13px;
    line-height: 1.55;
}

.biotter-support-info {
    box-sizing: border-box;
    margin-bottom: 22px;
    padding: 21px 24px;
    border-radius: 11px;
    background: #EAF7F7;
}

.biotter-support-info strong,
.biotter-support-info span {
    display: block;
}

.biotter-support-info strong {
    margin-bottom: 4px;
    font-size: 16px;
}

.biotter-support-info span {
    color: #425D6B;
    font-size: 14px;
}

.biotter-support-club {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    box-sizing: border-box;
    padding: 25px 28px;

    border-radius: 12px;
    background: #17384A;
    color: #FFFFFF;
}

.biotter-support-club small {
    display: block;
    margin-bottom: 5px;

    color: #7ED1D3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.biotter-support-club h3 {
    margin: 0 0 6px;
    color: #FFFFFF;
    font-size: 20px;
}

.biotter-support-club p {
    max-width: 700px;
    margin: 0;
    color: #D7E5EA;
    font-size: 13px;
    line-height: 1.6;
}

.biotter-support-club a {
    flex: 0 0 auto;

    display: inline-block;
    padding: 11px 18px;

    border-radius: 6px;
    background: #087F83;

    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.biotter-support-club a:hover {
    background: #066B6F;
}


@media (max-width: 900px) {

    .biotter-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .biotter-support-grid {
        grid-template-columns: 1fr;
    }

    .biotter-support-club {
        display: block;
    }

    .biotter-support-club a {
        margin-top: 16px;
    }

}