.wysiwyg-part h1,
.wysiwyg-part h2,
.wysiwyg-part h3,
.wysiwyg-part h4,
.wysiwyg-part h5,
.wysiwyg-part h6,
.wysiwyg-part p,
.wysiwyg-part h3, .wysiwyg-part h3:not(.review-title, .post-tile-title, .review-box-name) {
    margin: var(--spacing-0x);
}

.content-wrapper {
    display: grid;
    grid-template-columns: minmax(100px, 792px) 282px;
    justify-content: space-between;
    padding-bottom: var(--spacing-5x);
}

.container .content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-5x);
}

.main-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-3x);
}

.main-info img {
    width: 282px;
    height: 282px;
    object-fit: cover;
}

.main-info-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2x);
}

.main-info-content .color-box {
    margin: var(--spacing-0x);
}

.author-main-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-1x);
}

.author-main-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: var(--font-size-xl);
}

.author-main-info p:first-letter {
    text-transform: uppercase;
}

.main-info-content .color-box {
    width: fit-content;
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: var(--font-size-xl);
    padding: var(--spacing-15-x) var(--spacing-2x);
}

.main-info-content .social-icons {
    display: flex;
    align-items: center;
    gap: var(--spacing-05-x);
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2x);
}

.about-info p {
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: var(--font-line-height-sm);
}

.latest-posts-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2x);
}

.latest-posts-info .latest-posts-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3x);
}

.latest-posts-list .post-card {
    height: 504px;
}

.content-wrapper .author-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3x);
}

.author-list .author-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2x);
    border-top: 1px solid var(--surface-3);
    padding: var(--spacing-15-x) var(--spacing-0x);
    cursor: pointer;
}

.author-list .author-item:first-child {
    border: none;
    padding-top: var(--spacing-0x);
}

.author-item img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-1x);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.20) inset;
    object-fit: cover;
}

.author-item .author-content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.author-item .author-name {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: var(--font-size-xl);
    white-space: nowrap;
    margin-bottom: var(--spacing-05-x);
}

.author-item .author-role {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    font-weight: 600;
    line-height: var(--font-line-height-2xs);
    margin-bottom: var(--spacing-15-x);
}

.author-item .author-role:first-letter {
    text-transform: uppercase;
}

.author-item .author-post-amount {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: var(--font-line-height-sm);
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-5x);
    }

    .main-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-info img {
        width: 100%;
        height: 328px;
    }

    .latest-posts-info .latest-posts-list {
        grid-template-columns: 1fr;
    }
}