/* ═══════════════════════════════════════════
   Webweek News — Frontend
   v2.0
   ═══════════════════════════════════════════ */

/* ─── News Card ─── */
.ww-news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ww-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.ww-news-card:hover .ww-news-card__image img {
    transform: scale(1.04);
}

/* ─── Backgrounds ─── */
.ww-news-card--bg-primary   { background: var(--primary, #2563eb); color: #fff; }
.ww-news-card--bg-secondary { background: var(--secondary, #64748b); color: #fff; }
.ww-news-card--bg-default   { background: var(--default, #f1f5f9); }
.ww-news-card--bg-white     { background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.ww-news-card--bg-black     { background: #111; color: #fff; }

/* ─── Image ─── */
.ww-news-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: var(--ww-ratio, 16/9);
    flex-shrink: 0;
}
@media (max-width: 991px) {
    .ww-news-card__image { aspect-ratio: var(--ww-ratio-t, var(--ww-ratio, 16/9)); }
}
@media (max-width: 575px) {
    .ww-news-card__image { aspect-ratio: var(--ww-ratio-m, var(--ww-ratio, 16/9)); }
}
.ww-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* ─── Overlay (inside/split) ─── */
.ww-news-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 60%);
    pointer-events: none;
}

/* ─── Inside content (tekst over de afbeelding) ─── */
.ww-news-card__inside-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    z-index: 2;
}
.ww-news-card__inside-content .ww-news-card__title {
    color: #fff;
}
.ww-news-card__inside-content .ww-news-card__date {
    color: rgba(255,255,255,0.75);
}
.ww-news-card__inside-content .ww-news-card__excerpt {
    color: rgba(255,255,255,0.85);
}

/* ─── Body (footer/split) ─── */
.ww-news-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 20px;
}

/* ─── Meta ─── */
.ww-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}
.ww-news-card__date {
    color: var(--primary, #2563eb);
    font-weight: 500;
    font-size: 12px;
}
.ww-news-card__author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
}
.ww-news-card__avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
}

/* ─── Categories ─── */
.ww-news-card__categories {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
}
.ww-news-card__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(0,0,0,0.07);
    color: #555;
    line-height: 1.5;
}

/* ─── Title ─── */
.ww-news-card__title {
    margin: 0 0 6px 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: #1e293b;
}

/* ─── Excerpt ─── */
.ww-news-card__excerpt {
    font-size: 13.5px;
    line-height: 1.55;
    color: #64748b;
    margin: 0 0 12px 0;
    flex: 1;
}

/* ─── Button ─── */
.ww-news-card__btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary, #2563eb);
    margin-top: auto;
    transition: color 0.15s ease;
}
.ww-news-card:hover .ww-news-card__btn {
    text-decoration: underline;
}

/* ─── Row (meerdere tokens naast elkaar) ─── */
.ww-news-card__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

/* ─── Leestijd ─── */
.ww-news-card__leestijd {
    font-size: 12px;
    color: #94a3b8;
}

/* ─── Detail-page shortcode styling ─── */
.news_date {
    position: relative;
    color: var(--primary, #2563eb);
    font-size: 14px;
}

ul.news_category {
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
}
ul.news_category li {
    display: inline-block;
    vertical-align: top;
    padding-left: 0;
    margin-right: 5px;
    margin-bottom: 5px;
}
ul.news_category li:before {
    display: none;
}
ul.news_category li a {
    display: block;
    background: rgba(0,0,0,0.08);
    color: #666;
    padding: 7px 16px;
    border-radius: 5px;
    font-size: 85%;
    text-decoration: none;
    transition: background 0.15s ease;
}
ul.news_category li a:hover,
ul.news_category li a.active {
    background: rgba(0,0,0,0.2);
    color: #333;
}

ul.news_tags {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
ul.news_tags li {
    padding: 0;
}
ul.news_tags li:before {
    display: none;
}
ul.news_tags li a {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.15s ease;
}
ul.news_tags li a:hover {
    background: #e2e8f0;
}

/* ─── Leestijd (card) ─── */
.news_leestijd {
    font-size: 13px;
    color: #94a3b8;
}

/* ═══════════════════════════════════════════
   Detail page
   ═══════════════════════════════════════════ */

.ww-detail__image {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}
.ww-detail__image img {
    width: 100%;
    height: auto;
    display: block;
}
.ww-detail__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.ww-detail__date {
    color: var(--primary, #2563eb);
    font-size: 14px;
    font-weight: 500;
}
.ww-detail__author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}
.ww-detail__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.ww-detail__leestijd {
    font-size: 13px;
    color: #94a3b8;
}
.ww-detail__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.ww-detail__cat {
    display: inline-block;
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 5px;
    background: rgba(0,0,0,0.07);
    color: #555;
    text-decoration: none;
    transition: background 0.15s ease;
}
.ww-detail__cat:hover {
    background: rgba(0,0,0,0.14);
}
.ww-detail__content {
    margin: 20px 0;
}
.ww-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.ww-detail__tag {
    display: inline-block;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    transition: background 0.15s ease;
}
.ww-detail__tag:hover {
    background: #e2e8f0;
}
.ww-detail__related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.ww-detail__related-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #1e293b;
}

/* ─── Archive layout ─── */
.ww-news-archive__title {
    margin: 20px 0 8px;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}
.ww-news-archive__desc {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ─── Pagination ─── */
.ww-news-pagination {
    margin-top: 50px;
}
.ww-news-pagination ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    min-height: 42px;
    padding-inline: 130px;
    background: transparent;
}
.ww-news-pagination li {
    display: inline-block;
    padding: 0;
}
.ww-news-pagination li:before {
    display: none;
}
.ww-news-pagination .page-numbers {
    display: block;
    background: transparent;
    min-width: 42px;
    height: 42px;
    line-height: 42px;
    padding: 0 5px;
    text-align: center;
    border-radius: 30px;
    color: var(--primary, #2563eb);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: inherit;
}
.ww-news-pagination .page-numbers:hover {
    color: var(--dark, #111);
}
.ww-news-pagination .page-numbers.current {
    background: #000;
    border-radius: 10px;
    color: #fff;
}
.ww-news-pagination .page-numbers.dots {
    background: transparent;
    color: var(--dark, #333);
}

/* Vorige / Volgende */
.ww-news-pagination li:has(.prev) {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}
.ww-news-pagination li:has(.next) {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}
.ww-news-pagination .prev,
.ww-news-pagination .next {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    color: var(--primary, #2563eb);
    font-weight: 600;
    white-space: nowrap;
    border-radius: 0;
    line-height: 1;
}
.ww-news-pagination .prev:hover,
.ww-news-pagination .next:hover {
    background: transparent;
    color: var(--dark, #111);
}
.ww-news-pagination .prev:hover .ww-news-pag__pijl,
.ww-news-pagination .next:hover .ww-news-pag__pijl {
    background: var(--primary, #2563eb);
    color: #fff;
}
.ww-news-pag__pijl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #0A0A0A;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

@media (max-width: 600px) {
    .ww-news-pagination ul {
        padding-inline: 54px;
        gap: 4px;
    }
    .ww-news-pagination .prev,
    .ww-news-pagination .next {
        font-size: 0;
        gap: 0;
    }
    .ww-news-pag__pijl {
        font-size: 16px;
        width: 38px;
        height: 38px;
    }
    .ww-news-pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        line-height: 38px;
    }
}

/* ═══════════════════════════════════════════
   Table of Contents
   ═══════════════════════════════════════════ */

html {
    scroll-behavior: smooth;
}
.ww-toc {
    border: 1px solid #e2e6ea;
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 28px;
}
.ww-toc__title {
    margin: 0 0 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}
.ww-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ww-toc__list > li {
    padding: 0;
    margin-bottom: 4px;
}
.ww-toc__list > li:before {
    display: none;
}
.ww-toc__sublist {
    list-style: none;
    margin: 4px 0 4px 0;
    padding: 0 0 0 18px;
}
.ww-toc__sublist > li {
    padding: 0;
    margin-bottom: 2px;
}
.ww-toc__sublist > li:before {
    display: none;
}
.ww-toc__link {
    display: inline-block;
    color: var(--primary, #2563eb);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.15s ease;
}
.ww-toc__link:hover {
    color: var(--dark, #111);
    text-decoration: underline;
}
.ww-toc__sublist .ww-toc__link {
    font-size: 13px;
    color: #64748b;
}
.ww-toc__sublist .ww-toc__link:hover {
    color: var(--primary, #2563eb);
}

/* ═══════════════════════════════════════════
   Share buttons
   ═══════════════════════════════════════════ */
.ww-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}
.ww-share__label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}
.ww-share__icons {
    display: flex;
    gap: 8px;
}
.ww-share__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.ww-share__icon svg {
    width: 18px;
    height: 18px;
}
.ww-share__icon:hover { background: #e2e8f0; color: #1e293b; }
.ww-share__icon--linkedin:hover { background: #0077b5; color: #fff; }
.ww-share__icon--facebook:hover { background: #1877f2; color: #fff; }
.ww-share__icon--x:hover { background: #000; color: #fff; }
.ww-share__icon--whatsapp:hover { background: #25d366; color: #fff; }
.ww-share__icon--link:hover { background: #6366f1; color: #fff; }
.ww-share__icon--link.copied { background: #22c55e; color: #fff; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.ww-faq {
    margin: 32px 0;
}
.ww-faq__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1e293b;
}
.ww-faq__item {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}
.ww-faq__question {
    padding: 14px 18px;
    padding-right: 40px;
    font-weight: 600;
    font-size: 15px;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
    user-select: none;
    position: relative;
}
.ww-faq__question::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}
.ww-faq__item[open] .ww-faq__question::after {
    transform: translateY(-30%) rotate(-135deg);
}
.ww-faq__question::-webkit-details-marker { display: none; }
.ww-faq__question::marker { display: none; content: ''; }
.ww-faq__item[open] .ww-faq__question { border-bottom: 1px solid #f1f5f9; }
.ww-faq__answer {
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
}

/* ═══════════════════════════════════════════
   Author card (met foto + subtitle)
   ═══════════════════════════════════════════ */
.news_author_card {
    display: flex;
    align-items: center;
    gap: 14px;
}
.news_author_card__img {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.news_author_card__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news_author_card__name {
    font-weight: 600;
    font-size: 15px;
    color: #1e293b;
    line-height: 1.3;
}
.news_author_card__subtitle {
    font-size: 13px;
    color: #64748b;
    line-height: 1.3;
    margin-top: 2px;
}

/* ─── Date edited ─── */
.news_date_edited {
    font-size: 13px;
    color: #94a3b8;
}

/* ═══════════════════════════════════════════
   Search bar
   ═══════════════════════════════════════════ */
.ww-search__form {
    position: relative;
    display: flex;
    align-items: center;
}
.ww-search__icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: #94a3b8;
    pointer-events: none;
}
.ww-search__input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid #e2e6ea;
    border-radius: 8px;
    font-size: 15px;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}
.ww-search__input:focus {
    border-color: var(--primary, #2563eb);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}
.ww-search__input::placeholder {
    color: #94a3b8;
}

/* ═══════════════════════════════════════════
   Category icons
   ═══════════════════════════════════════════ */
.news_cat_icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-right: 4px;
}
.news_cat_icon--img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.news_cat_icon--svg {
    width: 16px;
    height: 16px;
}
.news_cat_icon--svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ═══════════════════════════════════════════
   Author bio block
   ═══════════════════════════════════════════ */
.ww-author-bio {
    display: flex;
    gap: 20px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin: 32px 0;
}
.ww-author-bio__photo img {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.ww-author-bio__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ww-author-bio__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 2px;
}
.ww-author-bio__name {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}
.ww-author-bio__role {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}
.ww-author-bio__text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-top: 8px;
}
.ww-author-bio__text p {
    margin: 0;
}
.ww-author-bio__more {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary, #2563eb);
    text-decoration: none;
}
.ww-author-bio__more:hover {
    text-decoration: underline;
}
@media (max-width: 575px) {
    .ww-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ─── Popular ─── */
.ww-popular__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #1e293b;
}

/* ─── Author subtitle inline ─── */
.news_author_subtitle {
    font-size: 13px;
    color: #64748b;
}

/* ═══════════════════════════════════════════
   Tags navigation
   ═══════════════════════════════════════════ */
.ww-tags-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
    overflow: hidden;
}
.ww-tags-nav__tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    transition: background 0.15s ease;
    white-space: nowrap;
}
.ww-tags-nav__tag:hover,
.ww-tags-nav__tag.active {
    background: #1e293b;
    color: #fff;
}
.ww-tags-nav__hidden {
    display: none;
}
.ww-tags-nav.expanded .ww-tags-nav__hidden {
    display: inline-block;
}
.ww-tags-nav__toggle {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    background: transparent;
    color: var(--primary, #2563eb);
    border: 1px dashed var(--primary, #2563eb);
    cursor: pointer;
    white-space: nowrap;
}
@media (max-width: 575px) {
    .ww-tags-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 4px;
        padding-bottom: 4px;
    }
    .ww-tags-nav::-webkit-scrollbar { display: none; }
    .ww-tags-nav__hidden { display: inline-block; }
    .ww-tags-nav__toggle { display: none; }
}

/* ═══════════════════════════════════════════
   Content types filter
   ═══════════════════════════════════════════ */
.ww-content-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.ww-content-types__item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    font-size: 13px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    transition: all 0.15s ease;
}
.ww-content-types__item:hover {
    background: #e2e8f0;
}
.ww-content-types__item.active {
    background: #1e293b;
    color: #fff;
}

/* ═══════════════════════════════════════════
   Comments
   ═══════════════════════════════════════════ */
.ww-comments__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #1e293b;
}
.ww-comments__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ww-comments__list ol, .ww-comments__list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ww-comment {
    padding: 0;
    margin-bottom: 16px;
}
.ww-comment__body {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px 20px;
}
/* Replies: left accent border */
.ww-comment .children {
    padding-left: 24px;
    margin-top: 12px;
}
.ww-comment .children .ww-comment__body {
    border-left: 3px solid #2563eb;
}
.ww-comment__header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.ww-comment__author {
    font-weight: 700;
    font-size: 15px;
    color: #1e293b;
}
.ww-comment__sep {
    color: #94a3b8;
    font-size: 14px;
}
.ww-comment__date {
    font-size: 13px;
    color: #94a3b8;
}
.ww-comment__text {
    font-size: 14px;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 12px;
}
.ww-comment__text p { margin: 0 0 8px; }
.ww-comment__text p:last-child { margin: 0; }
.ww-comment__footer {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ww-comment__like {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    font-size: 13px;
    padding: 0;
    transition: color 0.15s;
}
.ww-comment__like:hover,
.ww-comment__like.liked {
    color: #ef4444;
}
.ww-comment__like.liked svg {
    fill: #ef4444;
}
.ww-comment__like svg {
    width: 16px;
    height: 16px;
}
.ww-comment__like-count {
    font-size: 13px;
}
.ww-comment__reply a {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
}
.ww-comment__reply a:hover {
    color: #1e293b;
}

/* Comment form */
.ww-comment-form {
    margin-top: 28px;
}
.ww-comment-form .comment-reply-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #1e293b;
}
.ww-comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}
.ww-comment-form input[type="text"],
.ww-comment-form input[type="email"],
.ww-comment-form input[type="url"],
.ww-comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e6ea;
    border-radius: 6px;
    font-size: 14px;
    color: #1e293b;
    box-sizing: border-box;
    transition: border-color 0.15s;
    margin-bottom: 12px;
}
.ww-comment-form textarea { min-height: 100px; resize: vertical; }
.ww-comment-form input:focus,
.ww-comment-form textarea:focus {
    outline: none;
    border-color: var(--primary, #2563eb);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}
.ww-comment-submit {
    background: var(--primary, #2563eb);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.ww-comment-submit:hover {
    background: var(--dark, #1e40af);
}
.ww-comment-form .comment-form-cookies-consent label {
    display: inline;
    font-weight: 400;
    font-size: 12px;
    color: #64748b;
}
@media (max-width: 575px) {
    .ww-comment .children { padding-left: 14px; }
    .ww-comment__body { padding: 14px 16px; }
}
