.about-section {
    display: flex;
    flex-direction: row;
    gap: 5rem;
}

.about-section__carousel {
    width: 45%;
    height: auto;
}

.carousel-container {
    width: 100%;
    height: 100%;
}

.about-section__content {
    width: 55%;
    max-height: calc(100dvh - 230px);
    overflow: auto;
    scrollbar-width: thin;

    p {
        text-align: justify;
        margin-bottom: 32px;
    }

    p:last-child {
        margin-bottom: 10px;
    }
}

.about-section__content-title {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 46px;
}