.ws-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ws-section-title__content {
    display: flex;
    align-items: center;
}

.ws-section-title .ws-section-title__content > *,
.ws-section-title .ws-section-title__content > .big-title {
    font-size: 30px;
}

.ws-section-title .ws-section-title__content > .small-title {
    font-size: 23px;
}

.ws-section-title__icon {
    color: var(--sporsora-quaternary-color);
    padding-right: 10px;
}

.ws-section-title__title {
    color: var(--sporsora-primary-color);
    text-transform: uppercase;
    font-weight: 700;
}

.ws-section-title .ws-section-title__button {
    font-size: 12px;
    font-weight: normal;
    color: var(--sporsora-text-color);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s;
}

.ws-section-title .ws-section-title__button:hover {
    color: var(--sporsora-primary-color);
    text-decoration: underline;
}

.ws-section-title__button::after {
    padding-left: 5px;
    content: '\f055';
    font-family: 'Font Awesome 5 Pro';
}

@media (max-width: 767px) {
    .ws-section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 2vw;
    }

    .ws-section-title .ws-section-title__content > * {
        font-size: 5vw;
    }
}