.container.hero.fade-in.one {
    display: none !important;
}

/* Judging Blocks Container */
.judging-blocks-container {
    margin-top: 1.5rem;
}

/* Individual Judging Block */
.judging-block {
    background-color: #ffffff;
    border: 1px solid #87CEEB;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.judging-block:hover {
    border: 1px solid #87CEEB;
    box-shadow: 0 4px 12px rgba(50, 115, 220, 0.2);
    transform: translateY(-2px);
}

/* Line 1: Event Title (Clickable Link) */
.judging-block-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.judging-block-title a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.judging-block-title a:hover {
    color: #87CEEB;
    text-decoration: underline;
}

/* Line 2: Location (left) | Date (right) */
.judging-block-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #7a7a7a;
}

.judging-location {
    font-weight: 500;
}

.judging-date {
    font-weight: 500;
    text-align: right;
}

/* Line 3+: Description */
.judging-block-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    text-align: left;
}

.judging-block-description p {
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .judging-block {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .judging-block-title {
        font-size: 1.1rem;
    }

    .judging-block-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .judging-date {
        text-align: left;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .judging-block {
        background-color: #2b2b2b;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .judging-block:hover {
        border-color: #87CEEB;
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    }

    .judging-block-title a {
        color: #f0f0f0;
    }

    .judging-block-title a:hover {
        color: #87CEEB;
    }

    .judging-block-meta {
        color: #b0b0b0;
    }

    .judging-block-description {
        color: #e0e0e0;
    }
}

/* View More Link Styling */
.judging-blocks-container + .container a {
    color: #87CEEB;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.judging-blocks-container + .container a:hover {
    color: #87CEEB;
    text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
    .judging-blocks-container + .container a {
        color: #87CEEB;
    }

    .judging-blocks-container + .container a:hover {
        color: #87CEEB;
    }
}

/* Center Navigation Menu */
.navbar-menu {
    justify-content: center;
}

/* Reduce padding inside the Judging content wrapper */
#top.section {
    padding: 1rem 1.5rem;   /* or tweak just padding-top if you prefer */
}

#top > .section.fade-in.two {
    padding: 1rem 1.5rem;   /* or tweak just padding-top if you prefer */
}