/**
 * Vision Comments Styles
 *
 * Applies on single vision posts only. Styles the comment list + CTA card
 * to match the vision card design (Poppins, purple/pink brand palette).
 */

/* ==========================================================================
   CTA Card — shown to anonymous visitors in place of comment form
   ========================================================================== */

.vision-comments-cta {
    background: #752776;
    color: #fff;
    padding: 2rem 2.25rem;
    border-radius: 2em;
    text-align: center;
    margin: 1.5rem 0;
}

.vision-comments-cta-heading {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.vision-comments-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.vision-comments-cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff !important;
    background: #dc4797;
    border: none;
    border-radius: 2rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.vision-comments-cta-btn:hover,
.vision-comments-cta-btn:focus {
    background: #b02aac;
    color: #fff !important;
    text-decoration: none;
}

.vision-comments-cta-btn:active {
    transform: scale(0.98);
}

.vision-comments-cta-login {
    margin: 1rem 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.vision-comments-cta-login a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.vision-comments-cta-login a:hover {
    color: #fce4f0;
}

/* ==========================================================================
   Comment List — override Impreza's .w-comments styles for vision posts
   ========================================================================== */

.single-vision .w-comments-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.single-vision .w-comments-item-avatar img {
    border-radius: 50%;
    border: 2px solid #dc4797;
}

.single-vision .w-comments-item-author,
.single-vision .w-comments-item-author a {
    color: #752776;
    font-weight: 700;
}

.single-vision .w-comments-item-date,
.single-vision .w-comments-item-meta-date {
    color: #888;
    font-style: italic;
    font-size: 0.85rem;
}

.single-vision .w-comments-item-content {
    color: #333;
    line-height: 1.6;
}

.single-vision .comment-reply-link,
.single-vision .w-comments-item-reply a {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    background: #f5f5f5;
    color: #752776;
    border: 1px solid #ddd;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

.single-vision .comment-reply-link:hover,
.single-vision .w-comments-item-reply a:hover {
    background: #dc4797;
    color: #fff;
    border-color: #dc4797;
}

/* ==========================================================================
   Comment Form (logged-in users) — inherits theme input styles
   ========================================================================== */

.single-vision #commentform .form-submit input[type="submit"],
.single-vision .comment-form .form-submit input[type="submit"] {
    background: #dc4797;
    border-color: #dc4797;
    color: #fff;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.single-vision #commentform .form-submit input[type="submit"]:hover,
.single-vision .comment-form .form-submit input[type="submit"]:hover {
    background: #b02aac;
    border-color: #b02aac;
}
