.panel-section {
    display: grid;
    grid-template-columns: 1fr;
    padding: 56px 20px;
    gap: 24px;
}

.panel-media {
    justify-self: end;
}

.panel-media img {
    width: 335px;
    height: 322px;
}

.panel-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-sub-section {
    display: flex;
    gap: 8px;

}


.icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #FEE002;
}

.icon-wrapper img {
    width: 20px;
    height: 20px;
}


@media screen and (min-width: 760px) {
    .panel-media {
        justify-self: center;
    }

    .panel-section {
        grid-template-columns: 1fr 2fr;
    }
}