.visual-section {
    margin-top: 16rem;
    h2, h3, h4, h5 {
        margin:0;
        word-break: keep-all;
    }

    h2 {
        font-size: var(--fs-title);
        font-weight: 800;
        text-align: center;
    }
    h3 {
        font-size: var(--fs-subtitle);
        font-weight: 700;
        text-align: center;
        width: 75%;
        margin: 0 auto;
        color: #6e6e73;
    }
    .content {
        p {
        color: #6e6e73;
        font-weight: 700;
        font-size: var(--fs-copyright);
        line-height: 1.54;
        }
        strong {
        font-weight: 700;
        }
    }
}



#visual-section2,
#visual-section3 {
    .content-wrapper {
        display: flex;
        gap: 1rem;
        flex-wrap: nowrap;
    }
    .content {
        border-radius: 1rem;
        background: #f5f5f7;
        min-height: calc(var(--lvh) * 50);
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        width: 100%;
    }
}

#visual-section5 {
    .content-wrapper {
        margin: var(--fs-subtitle) auto;
        display: flex;
        gap: 2rem;
        flex-wrap: nowrap;
        max-width: var(--max-content-width);
    }
    .content {
        border-radius: 1rem;
        background: #f5f5f7;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 1;
        width: 100%;
        aspect-ratio: 2 / 1;
        padding: 2rem;
        gap: 0.5rem;


        h3 {
        font-weight: 750;
        color: black;
        }

        a {
            --fs-temp: calc(var(--fs-body) * 0.875);
            gap: calc(var(--fs-temp) / 4);
            display: flex;
            align-items: center;
            font-size: var(--fs-temp);
            span {
                font-size: var(--fs-temp);
            }
            span.material-symbols-outlined {
                font-size: var(--fs-temp);
            }
            
            color: #06c;
            &:hover {
                text-decoration: none;
                span {
                    text-decoration: underline;
                }
                span.material-symbols-outlined {
                    text-decoration: none;
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .visual-section {
        margin-top: 4rem;

        h3 {
            width: 100%;
        }
        .content {
                margin-top: 2rem;
            p {
                color: #666;
            }
        }
    }



    #visual-section2 {
        .content {
            margin-top: 1rem;
        }
        .content-wrapper {
            margin-top: 1rem;
            display: flex;
            gap: 1rem;
            flex-wrap: nowrap;
            flex-direction: column;
        }
    }
    #visual-section4, #visual-section5 {
        h2, h3 {
            padding: 0 calc(var(--default-container-padding));
        }
    }
    #visual-section5 {

        .content-wrapper {
            gap: 1rem;
            flex-direction: column;
        }
        .content {
            margin-top: 0;

            a {
                font-size: 0.875rem;
            }

            a:hover {
                font-size: 0.875rem;
            }
        }
    }

}
