html {
    scroll-behavior: smooth;
}

#handbook-in-hand {
    overflow-y: scroll; 
}

.section > * {
    padding: 1.5rem 1rem;
    justify-content: center;
}

#images > * {
    padding: 0;
}

.section.is-1440 > * > * {
    max-width: 1440px;
}

a {
    text-decoration-color: black;
    text-decoration-line: underline;
    text-decoration-style: dotted;
}

.container.info {
    flex-direction: column;
    position: sticky;
    top: 2rem;
    padding-right: 1rem;
}

.container.info .title {
    font-family: 'ChosunGu', sans-serif;
    font-size: 1.75rem;
    font-weight: 200;
}

.container.info p {
    font-family: 'ChosunGu', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.container.info p:not(:first-child) {
    margin-top: 1rem;
}

.columns {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem 0;
}

#images .columns {
    gap: 0;
    height: auto;
    align-content: start;
}

#images .column {
    aspect-ratio: 1/1;
    display: flex;
    overflow: hidden;
}

.column.is-12-12 {
    grid-column: span 12;
}

.column.is-6-12 {
    grid-column: span 6;
}

#order-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

#order-form .field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

#order-form .field .label {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'ChosunGu', sans-serif;
    display: flex;
    justify-content: space-between;
}

#order-form .field .input, #order-form .field .textarea {
    background-color: transparent;
    border: 2px solid black;
    border-radius: 0;
    width: 100%;
    padding: 1rem;
    font-family: 'ChosunGu', sans-serif;
    font-size: 1.25rem;
}

#order-form .field .textarea {
    resize: none;
    line-height: 1.7;
}

#order-form .field .input:focus, #order-form .field .textarea:focus {
    outline: none;
}


#order-form .field .button#submit {
    font-family: 'ChosunGu', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    padding: 1rem;
    background-color: black;
    color: white;
    cursor: pointer;
}


.container.status {
    margin-top: 1.25rem;
}

.container.status .notification {
    font-family: 'ChosunGu', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.container.disclaimer {
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1.25rem;
    font-family: 'ChosunGu', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

#images {
    scroll-behavior: smooth;
}

#images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (min-width: 600px) {
    .container.info {
        padding-right: 3rem;
    }

    .container.disclaimer {
        font-size: 1rem;
    }

    .container.info .title {
        font-size: 3rem;
    }

    .column.is-2-12-600 {
        grid-column: span 2;
    }
    
    .column.is-6-12-600 {
        grid-column: span 6;
    }

    .section > * {
        padding: 1.5rem;
    }
}

@media screen and (min-width: 900px) {
    .container.info {
        padding-right: 5rem;
    }

    .section > * {
        padding: 3rem;
    }
}
