.ddgc-wrap,
.ddgc-wrap * {
    box-sizing: border-box;
}

.ddgc-wrap {
    width: 100%;
    margin: 32px 0 0;
    padding: 26px;
    color: #323d4a;
    background: #fff;
    border: 1px solid #d4dee6;
    border-radius: 11px;
    font-family: Arial, Helvetica, sans-serif;
}

.ddgc-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ddgc-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #007cc9;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
}

.ddgc-heading h2,
.ddgc-form-card .comment-reply-title {
    margin: 0 !important;
    color: #323d4a !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

.ddgc-heading h2 {
    font-size: 24px !important;
}

.ddgc-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    color: #fff;
    background: #ff9500;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 700;
}

.ddgc-intro {
    margin: 9px 0 20px;
    color: #607084;
    font-size: 13px;
    line-height: 1.6;
}

.ddgc-comment-list,
.ddgc-comment-list .children {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ddgc-comment-list .children {
    margin: 14px 0 0 32px;
}

.ddgc-comment-item {
    margin: 0 0 14px;
}

.ddgc-comment-card,
.ddgc-form-card {
    padding: 18px;
    background: #fff;
    border: 1px solid #dbe4eb;
    border-radius: 9px;
}

.ddgc-comment-card {
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ddgc-comment-card:hover {
    border-color: #b9ddf4;
    box-shadow: 0 8px 22px rgba(0, 124, 201, .07);
    transform: translateY(-1px);
}

.ddgc-comment-header {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px;
}

.ddgc-avatar,
.ddgc-avatar img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.ddgc-avatar {
    overflow: hidden;
    border: 2px solid #e1f1fb;
}

.ddgc-avatar img {
    display: block;
    object-fit: cover;
}

.ddgc-author,
.ddgc-author a {
    color: #323d4a !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
}

.ddgc-date {
    color: #778596 !important;
    font-size: 11px;
    text-decoration: none !important;
}

.ddgc-author a:hover,
.ddgc-date:hover {
    color: #007cc9 !important;
}

.ddgc-comment-content {
    color: #526579;
    font-size: 13px;
    line-height: 1.7;
}

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

.ddgc-comment-footer {
    margin-top: 10px;
    text-align: right;
}

.ddgc-comment-footer a {
    color: #ff9500 !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
}

.ddgc-comment-footer a:hover {
    color: #007cc9 !important;
}

.ddgc-moderation,
.ddgc-empty {
    padding: 13px;
    color: #607084;
    background: #f8fbfd;
    border: 1px solid #e1e9ef;
    border-radius: 7px;
    font-size: 12px;
    text-align: center;
}

.ddgc-form-card {
    margin-top: 18px;
    background: #f8fbfd;
}

.ddgc-form-card .comment-reply-title {
    margin-bottom: 7px !important;
    font-size: 20px !important;
}

.ddgc-form-card .comment-notes,
.ddgc-form-card .logged-in-as {
    margin: 0 0 14px;
    color: #657587;
    font-size: 12px;
}

.ddgc-form-card label {
    display: block;
    margin: 0 0 6px;
    color: #323d4a;
    font-size: 12px;
    font-weight: 700;
}

.ddgc-form-card input[type="text"],
.ddgc-form-card input[type="email"],
.ddgc-form-card textarea {
    width: 100%;
    padding: 11px 12px;
    color: #323d4a;
    background: #fff;
    border: 1px solid #ccd9e2;
    border-radius: 6px;
    outline: none;
    font: 13px Arial, Helvetica, sans-serif;
}

.ddgc-form-card textarea {
    min-height: 125px;
    resize: vertical;
}

.ddgc-form-card input:focus,
.ddgc-form-card textarea:focus {
    border-color: #007cc9;
    box-shadow: 0 0 0 3px rgba(0, 124, 201, .09);
}

.ddgc-form-card .form-submit {
    margin: 4px 0 0;
}

.ddgc-form-card .submit {
    min-height: 46px;
    padding: 12px 23px;
    color: #fff !important;
    background: #ff9500;
    border: 1px solid #ff9500;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.ddgc-form-card .submit:hover {
    background: #007cc9;
    border-color: #007cc9;
    transform: translateY(-1px);
}

#cancel-comment-reply-link {
    margin-left: 8px;
    color: #007cc9 !important;
    font: 11px Arial, Helvetica, sans-serif;
    text-decoration: none !important;
}

@media (min-width: 768px) {
    .ddgc-form-card .comment-form-author,
    .ddgc-form-card .comment-form-email {
        display: inline-block;
        width: calc(50% - 7px);
        vertical-align: top;
    }

    .ddgc-form-card .comment-form-author {
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .ddgc-wrap {
        margin-top: 24px;
        padding: 17px;
    }

    .ddgc-heading h2 {
        font-size: 21px !important;
    }

    .ddgc-comment-list .children {
        margin-left: 14px;
    }

    .ddgc-form-card .submit {
        width: 100%;
    }
}

