.entry-section {
    background-color: #fff;
    width: 100%;
    border-radius: 32px;
    padding: 32px 32px 16px 32px;
    margin-top: 16px;
    box-sizing: border-box;
}

.entry-container {
    display: flex;
}

.entry-container__content {
    flex: 1 1 50%;
    flex-direction: column;
    align-items: start;
}

.entry-container__image {
    display: none;
    flex: 0 1 35%;
    justify-content: start;
    align-items: center;
}

.entry-container__image img {
    max-width: 100%; 
    height: auto;
    -webkit-user-select: none;
    user-select: none;
}

@media (min-width: 1024px) {
    
    .entry-container__image {
        display: flex;
    }
}