.chamadaAoVivo {
    grid-column: span 3;
    grid-row: span 3;
}

.chamadaAoVivo *,
.chamadaAoVivo *::before,
.chamadaAoVivo *::after {
    box-sizing: border-box;
}

.chamadaAoVivo > div {
    color: #1c1c1c;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #0373BE;
    overflow: hidden;
}

.chamadaAoVivo .chamadaAoVivo__content {
    padding: 12px 12px 0;
}

.chamadaAoVivo__badges {
    align-items: center;
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.chamadaAoVivo__brand,
.chamadaAoVivo__live {
    align-items: center;
    border-radius: 10px;
    display: inline-flex;
    font-family: "WorkSans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    height: 17px;
    justify-content: center;
    letter-spacing: 0.12px;
    line-height: 14px;
    padding: 0 8px;
}

.chamadaAoVivo__brand {
    background: #0373be;
    color: #fff;
}

.chamadaAoVivo__live {
    border: 1px solid #0373be;
    color: #0373be;
    gap: 4px;
    padding-left: 6px;
}

.chamadaAoVivo__live::before {
    background: #ff304c;
    border-radius: 50%;
    content: "";
    height: 5px;
    width: 5px;
}

.chamadaAoVivo h3 {
    font-family: "Merriweather", Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: #1C1C1C;
    margin-bottom: 8px;
}

.chamadaAoVivo p {
    font-family: "WorkSans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.24px;
    color: #1C1C1C;
    margin-bottom: 25px;
}

.chamadaAoVivo figure {
    aspect-ratio: 282 / 158;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
}

.chamadaAoVivo figure img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
    width: 100%;
}

.chamadaAoVivo:hover h3 {
    text-decoration: underline;
}

.chamadaAoVivo:hover figure img {
    transform: scale(1.03);
}

@media screen and (max-width: 768px) {
    .chamadaAoVivo {
        grid-column: 1 / -1;
        overflow: hidden;
    }

    .chamadaAoVivo > div {
        border-radius: unset;
        border: unset;
    }

    .chamadaAoVivo .chamadaAoVivo__content {
        padding: unset;
    }

    .chamadaAoVivo .chamadaAoVivo__content {
        padding: unset;
    }

    .chamadaAoVivo__badges {
        margin-bottom: 14px;
    }

    .chamadaAoVivo h3 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .chamadaAoVivo p {
        display: none;
    }

    .chamadaAoVivo figure {
        aspect-ratio: 1.8 / 1;
    }
}
