.about-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

h3 {
    font-weight: 200;
    font-size: 15pt;
    line-height: 18px;
}

p {
    font-size: smaller;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: #1d1d1f;
}

p a:hover {
    text-decoration: underline;
}

.about-right {
    width: 48%;
}

.about-left {
    width: 48%;
    aspect-ratio: 16 / 9;
}

.about-left img {
    height: auto;
    object-fit: cover;
}

@media (max-width: 1133px) {
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-left {
        width: 100%;
        margin-bottom: 0px;
    }

    .about-right {
        width: 100%;
    }
}