.comments-area {
    min-width: 0;
    overflow-wrap: anywhere;
    scroll-margin-top: 24px;
}

.comments-area > h2 {
    margin-bottom: 22px;
    font-size: 22px;
    letter-spacing: -.02em;
}

.comments-area p + p {
    margin-top: 12px;
}

.comments-area > .comment-respond {
    margin: 0 0 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid #e5e5e5;
}

.comments-area .comment-respond h3 {
    margin: 0 0 14px;
    font-size: 17px;
}

.comments-area .comment-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    align-items: end;
}

.comments-area .comment-form-author {
    grid-column: 1 / -1;
    max-width: 280px;
}

.comments-area .comment-form-comment {
    grid-column: 1 / -1;
}

.comments-area .comment-form label {
    margin: 0 0 5px;
    color: #606060;
    font-size: 13px;
    font-weight: 600;
}

.comments-area .comment-form input:not([type=checkbox]) {
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid #909090;
    border-radius: 0;
    font-size: 16px;
}

.comments-area .comment-form textarea {
    min-height: 88px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #909090;
    border-radius: 0;
    font: inherit;
    line-height: 1.75;
    resize: vertical;
}

.comments-area .comment-form input:not([type=checkbox]):focus,
.comments-area .comment-form textarea:focus {
    border-bottom-color: var(--pink);
    box-shadow: 0 1px 0 var(--pink);
    outline: 0;
}

.comments-area .form-submit {
    grid-column: 2;
    justify-self: end;
    margin: 0;
}

.comments-area .comment-form .submit {
    min-height: 40px;
    margin: 4px 0 0;
    padding: 8px 22px !important;
    border-radius: 999px;
    background: var(--pink) !important;
    font-size: 14px;
    font-weight: 700;
}

.comments-area .comment-form .submit:disabled {
    cursor: wait;
    opacity: .6;
}

#cancel-comment-reply-link {
    display: inline-block;
    min-height: 40px;
    margin-left: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #606060;
    font-size: 13px;
    vertical-align: middle;
}

.comments-area .comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comments-area .comment-list li {
    min-width: 0;
}

.comments-area .comment-body {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border: 0;
}

.comments-area .comment-avatar {
    display: block;
    width: 40px;
    height: 40px;
    color: #d6d6d6;
}

.comments-area .comment-avatar svg {
    display: block;
    width: 100%;
    height: 100%;
}

.comments-area .comment-main,
.comments-area .comment-author,
.comments-area .comment-metadata,
.comments-area .comment-respond {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.comments-area .comment-body header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 8px;
}

.comments-area .comment-author {
    color: #0f0f0f;
    font-size: 13px;
    font-weight: 700;
}

.comments-area .comment-metadata {
    color: #606060;
    font-size: 12px;
}

.comments-area .comment-content {
    margin: 5px 0 2px;
    color: #0f0f0f;
    line-height: 1.65;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: normal;
}

.comments-area .comment-content p {
    margin: 0 0 8px;
}

.comments-area .comment-content pre {
    max-width: 100%;
    overflow: auto;
    white-space: pre-wrap;
}

.comments-area .comment-reply-link,
.comments-area .pururun-replies-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.comments-area .comment-reply-link {
    margin-left: -12px;
    color: #606060;
}

.comments-area .comment-reply-link:hover,
.comments-area .comment-reply-link:focus-visible {
    background: #f2f2f2;
    color: #0f0f0f;
}

.comments-area .pururun-replies-toggle {
    margin: 0 0 4px 40px;
    background: transparent;
    color: #ad004c;
    text-align: left;
    overflow-wrap: anywhere;
}

.comments-area .pururun-replies-toggle::before {
    content: '';
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .18s ease;
}

.comments-area .pururun-replies-toggle[aria-expanded=true]::before {
    transform: rotate(225deg) translate(-1px, -1px);
}

.comments-area .pururun-replies-toggle:hover {
    background: #fff3f8;
}

.comments-area .pururun-replies-toggle:focus-visible,
.comments-area textarea:focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 2px;
}

.comments-area .comment-list .children {
    margin: 0 0 0 40px;
    padding: 0;
    border: 0;
    list-style: none;
}

.comments-area .comment-list .children .comment-body {
    grid-template-columns: 32px minmax(0, 1fr);
}

.comments-area .comment-list .children .comment-avatar {
    width: 32px;
    height: 32px;
}

.comments-area .prb-comment-notice {
    margin: 16px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--pink);
    background: #fff3f8;
    color: #333;
    outline-offset: 3px;
}

.comment-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
}

.prb-unavailable {
    margin: 40px 0;
}

.prb-unavailable h1 {
    font-size: 24px;
}

.prb-unavailable a {
    color: var(--pink);
    text-decoration: underline;
}

@media (max-width: 760px) {
    .comments-area > h2 {
        font-size: 20px;
    }

    .comments-area .comment-form {
        display: block;
    }

    .comments-area .comment-form-author {
        max-width: none;
    }

    .comments-area .form-submit {
        margin-top: 12px;
        text-align: right;
    }

    .comments-area .comment-form .submit {
        width: auto !important;
    }

    .comments-area .comment-body {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 10px;
        padding: 12px 0;
    }

    .comments-area .comment-avatar {
        width: 32px;
        height: 32px;
    }

    .comments-area .comment-list .children {
        margin-left: 20px;
    }

    .comments-area .comment-list .children .comment-body {
        grid-template-columns: 28px minmax(0, 1fr);
    }

    .comments-area .comment-list .children .comment-avatar {
        width: 28px;
        height: 28px;
    }

    .comments-area .pururun-replies-toggle {
        min-height: 44px;
        margin-left: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .comments-area .pururun-replies-toggle::before {
        transition: none;
    }
}
