.definitionBox {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 4rem;
    padding: 1rem;
}

.definitionImg {
    width: 90%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.definitionTitle {
    font-size: calc(1.5rem + 5vw);
    font-family: "Inter", sans-serif;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--blackdark, #1a1a1a);
}

.definitionTextBox {
    padding: 1rem;
}

.definitionText {
    white-space: pre-line;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

@media screen and (min-width: 992px) {
    .definitionBox {
        flex-direction: row;
        gap: 3rem;
        margin-top: 6rem;
    }

    .definitionTextBox {
        max-width: 50%;
        padding: 2rem;
    }

    .definitionImg {
        width: 50%;
        max-width: 600px;
    }
}