.about-section{
    display: flex;
    gap: 48px;
    padding-bottom: 64px;
}
.about-section > p{
    flex: 1;
}

.title-section{
    margin-bottom: 24px;
}
.title-section .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title-section .title h2{
    margin-left: 0px;
}
.title-section p{
    font-style: italic;
    color: var(--highlight-color);
    margin-top: 12px;
}

.image-wrapper{
    flex: 1;
    max-width: 320px;
    padding: 32px;
    padding-bottom: 24px;
    background-color: white;
    border: 1px solid black;
}

.image-wrapper .image{
    width: 100%;
    padding-top: calc(100%*4/3);
    background-size: cover;
}
.image-wrapper .info-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}
.image-wrapper .info-wrapper h6{
    font-weight: 600;
    font-size: 14px;
}

@media screen and (max-width: 1024px){
    .about-section{
        flex-direction: column;
        gap: 24px;
    }
}