h1.section-title {
    color: var(--ctu-gray);
    font-family: var(--font-lora);
    margin: 0.5rem 0 1rem 0;
}

.gd-menu ul {
    display: flex;
    list-style: none;
    gap: 12px;
}

.gd-menu ul li a {
    color: var(--ctu-light-gray);
    font-weight: 500;
    text-decoration: none;
}

.gd-menu ul li a:hover {
    text-decoration: underline;
}

#gd-goal {
    padding: 2rem;
    background-color: var(--ctu-dark-blue);
    color: var(--ctu-light-gray);
    text-align: center;
    font-family: var(--font-lora);
}

#gd-goal h1 {
    font-size: 24px;
    line-height: 125%;
    margin-bottom: 16px;
    font-family: var(--font-lora);
}

#gd-goal h1 span {
    font-style: italic;
    font-size: 16px;
    margin-left: 8px;
}

#gd-goal h2 {
    color: var(--ctu-yellow);
    font-weight: 900;
    font-size: 32px;
    font-family: var(--font-lora);
}

/* Video */
#gd-video {
    padding: 2rem 0;
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 16px;
}

#gd-video .video-zone {
    min-width: 60%;
    border-radius: 6px;
}

.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 6px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.challenge-stats {
    width: 100%;
    max-width: 40%;
    border-radius: 6px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.challenge-stats .count {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 16px;
}

.count-item {
    border: 1px solid var(--ctu-yellow);
    box-shadow: 0 0 10px 5px var(--ctu-light-gray);
    font-weight: 700;
    border-radius: 6px;
    padding: 1rem;
    width: 100%;
    min-height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Cards */
/* About */
#gd-about {
    border: 1px solid var(--ctu-medium-gray);
    border-radius: 6px;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

#gd-about p {
    padding: 0 2rem;
    margin-bottom: 1rem;
    font-size: 18px;
}

@media(max-width:767px) {
    nav {
        gap: 24px;
    }

    #gd-video {
        flex-direction: column;
        gap: 16px;
    }

    #gd-video .video-zone,
    .challenge-stats {
        min-width: 100%;
    }

    .challenge-stats {
        width: 100%;
        padding: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .count-item {
        padding: 0.25rem;
        width: 100%;
        max-width: 50%;
        min-height: 100px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media(min-width:768px) and (max-width:960px) {

    #gd-video .video-zone,
    .challenge-stats {
        min-width: 50%;
        max-width: 50%;
        padding: 0;
    }
}