/* Judge List Section */
#judge-list {
    background-color: #fff;
    position: relative;
    z-index: 10;
    padding-top: 4rem;
}

.judge-title {
    /* h2 global style sets font and color, we just need to ensure alignment which is handled by utility classes */
    -webkit-text-stroke-color: #E8693C;
    /* Match global but explicit */
}

/* Ensure align-left for judge items overrides any potential global center */
.judge-item {
    text-align: left !important;
}

.judge-item h5 {
    font-family: "Inter-V", sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 1.125rem;
    /* ~18px */
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.judge-item p {
    font-family: "Inter-V", sans-serif;
    color: #000;
    font-size: 0.95rem;
    /* ~15px */
    line-height: 1.5;
    text-align: left;
    margin-bottom: 0;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    #judge-list {
        padding-top: 3rem !important;
    }
    .judge-title {
        margin-bottom: 2rem;
    }

    .judge-item {
        padding: 0 1rem;
        /* Add some side padding on mobile */
    }
}