.content-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#squash-image {
    margin-top: 30px;
}

.about-section {
    align-items: start;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-image img {
    width: 300px;
    border-radius: 8px;
}

.row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.caption-image .caption {
    font-size: 16px;
}

.wide-image {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .about-section {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    #squash-image {
        margin-top: auto;
    }

    .about-section {
        align-items: center;
    }

    .about-image img {
        width: 250px;
        max-width: 100%;
    }

    .row {
        flex-direction: column;
        gap: 1rem;
    }

    .wide-image {
        width: 100%;
    }
}