.judge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.judge-card figure {
    width: 100%;
    aspect-ratio: 1/1;
}

judges-grid.grid {
    min-height: 90vh;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.medium-text.judge-name {
    color: var(--text-color);
    font-weight: 700;
    line-height: calc(100% * var(--heading-font-line-height-scale));
    margin-top: max(12px, calc(0.83vw * var(--scale)));
    margin-bottom: max(4px, calc(0.28vw * var(--scale)));
}

.judge-card p {
    font-size: max(14px, calc(0.97vw * var(--scale)));
}

@media screen and (max-width: 1080px) {
    .secondary-hero-content {
        padding-bottom: 18px;
    }
}

@media screen and (max-width: 767px) { 
    .secondary-hero-content {
        padding-bottom: 10px;
    }

    judges-grid.grid {
        grid-template-columns: 1fr 1fr;
    }

    .medium-text.judge-name {
        margin-top: 10px;
    }
}