/* ==========================================================================
   WDB CARD CLIENTE — Testimonial Cards (3 Models)
   ========================================================================== */

/* ==========================================================================
   GRID & WRAPPER
   ========================================================================== */
.wdb-card-cliente {
    width: 100%;
}

.wdb-cc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ==========================================================================
   SHARED ELEMENTS
   ========================================================================== */
.wdb-cc-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.wdb-cc-star {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.wdb-cc-model-a .wdb-cc-star,
.wdb-cc-model-c .wdb-cc-star {
    fill: #22c55e;
}

.wdb-cc-model-b .wdb-cc-star {
    fill: #f59e0b;
}

.wdb-cc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.wdb-cc-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.wdb-cc-info p {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin: 2px 0 0;
}

.wdb-cc-quote-icon {
    width: 28px;
    height: 28px;
    fill: #22c55e;
    opacity: 0.6;
    flex-shrink: 0;
}

/* Verified badge */
.wdb-cc-verified-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #22c55e;
    z-index: 2;
}

/* Card B needs position relative for badge */
.wdb-cc-card-b {
    position: relative;
}

/* Stars on separate line (models C, E, F) */
.wdb-cc-stars-sep {
    display: flex;
    margin-top: 10px;
}

/* ==========================================================================
   MODEL A — Classic Top
   ========================================================================== */
.wdb-cc-card-a {
    background: linear-gradient(145deg, #141414 0%, #0d0d0d 100%);
    border: 1px solid rgba(34,197,94,0.15);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.wdb-cc-card-a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wdb-cc-card-a:hover {
    border-color: rgba(34,197,94,0.35);
    box-shadow: 0 12px 40px rgba(34,197,94,0.1);
}

.wdb-cc-card-a:hover::before {
    opacity: 1;
}

.wdb-cc-card-a .wdb-cc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.wdb-cc-card-a .wdb-cc-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.wdb-cc-card-a .wdb-cc-rating .wdb-cc-quote-icon {
    margin-left: auto;
}

.wdb-cc-score {
    font-size: 14px;
    font-weight: 700;
    color: #22c55e;
    margin-left: 6px;
}

.wdb-cc-card-a .wdb-cc-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* ==========================================================================
   MODEL B — Minimal / Stars Top
   ========================================================================== */
.wdb-cc-card-b {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 26px 22px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
}

.wdb-cc-card-b:hover {
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.wdb-cc-card-b .wdb-cc-stars {
    margin-bottom: 16px;
}

.wdb-cc-card-b .wdb-cc-text {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    flex: 1;
    margin: 0 0 20px;
}

.wdb-cc-card-b .wdb-cc-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.wdb-cc-card-b .wdb-cc-footer h3 {
    font-size: 14px;
    font-weight: 600;
}

.wdb-cc-card-b .wdb-cc-footer p {
    margin-top: 1px;
}

/* ==========================================================================
   MODEL C — Spotlight
   ========================================================================== */
.wdb-cc-card-c {
    background: linear-gradient(160deg, #0f1a14 0%, #0a0f0c 100%);
    border: 1px solid rgba(34,197,94,0.1);
    border-radius: 20px;
    padding: 32px 26px 26px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
    overflow: hidden;
}

.wdb-cc-card-c::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.4s ease;
}

.wdb-cc-card-c:hover {
    border-color: rgba(34,197,94,0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(34,197,94,0.08);
}

.wdb-cc-card-c:hover::after {
    width: 180px;
    height: 180px;
}

.wdb-cc-card-c .wdb-cc-quote-bg {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 40px;
    height: 40px;
    fill: rgba(34,197,94,0.1);
}

.wdb-cc-card-c .wdb-cc-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin: 0 0 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.wdb-cc-card-c .wdb-cc-text::before {
    content: '\201C';
    font-size: 48px;
    font-weight: 800;
    color: #22c55e;
    opacity: 0.3;
    line-height: 0;
    vertical-align: sub;
    margin-right: 4px;
}

.wdb-cc-card-c .wdb-cc-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.wdb-cc-card-c .wdb-cc-avatar {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(34,197,94,0.3);
}

.wdb-cc-card-c .wdb-cc-info {
    flex: 1;
}

.wdb-cc-card-c .wdb-cc-info p {
    color: #22c55e;
    opacity: 0.7;
}

.wdb-cc-card-c .wdb-cc-stars {
    display: flex;
    gap: 1px;
}

.wdb-cc-card-c .wdb-cc-stars .wdb-cc-star {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   MODEL D — Neon Border
   ========================================================================== */
.wdb-cc-card-d {
    background: #111;
    border-radius: 16px;
    padding: 28px 24px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}

.wdb-cc-card-d::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 50%, #22c55e 100%);
    background-size: 100% 200%;
    animation: wdb-cc-bar 3s ease-in-out infinite;
    border-radius: 16px 0 0 16px;
}

.wdb-cc-card-d::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 1px;
    background: linear-gradient(90deg, #22c55e, transparent 30%, transparent 70%, #22c55e);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wdb-cc-card-d:hover {
    box-shadow: 0 12px 40px rgba(34,197,94,0.08);
}

.wdb-cc-card-d:hover::after { opacity: 1; }

@keyframes wdb-cc-bar {
    0%, 100% { background-position: 0 0; }
    50% { background-position: 0 100%; }
}

.wdb-cc-card-d .wdb-cc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.wdb-cc-card-d .wdb-cc-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.wdb-cc-card-d .wdb-cc-rating .wdb-cc-quote-icon {
    margin-left: auto;
    width: 24px; height: 24px;
    opacity: 0.5;
}

.wdb-cc-card-d .wdb-cc-text {
    font-size: 13.5px; line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Stars fill animation (Model D) */
.wdb-cc-star-fill-wrap {
    position: relative;
    width: 16px; height: 16px;
}

.wdb-cc-star-fill-wrap svg {
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
}

.wdb-cc-star-fill-wrap .wdb-cc-star-bg {
    fill: rgba(255,255,255,0.1);
}

.wdb-cc-star-fill-wrap .wdb-cc-star-fg {
    fill: #22c55e;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.5s ease;
}

.wdb-cc-card-d.wdb-cc-in-view .wdb-cc-star-fill-wrap:nth-child(1) .wdb-cc-star-fg { clip-path: inset(0 0 0 0); transition-delay: 0.1s; }
.wdb-cc-card-d.wdb-cc-in-view .wdb-cc-star-fill-wrap:nth-child(2) .wdb-cc-star-fg { clip-path: inset(0 0 0 0); transition-delay: 0.2s; }
.wdb-cc-card-d.wdb-cc-in-view .wdb-cc-star-fill-wrap:nth-child(3) .wdb-cc-star-fg { clip-path: inset(0 0 0 0); transition-delay: 0.3s; }
.wdb-cc-card-d.wdb-cc-in-view .wdb-cc-star-fill-wrap:nth-child(4) .wdb-cc-star-fg { clip-path: inset(0 0 0 0); transition-delay: 0.4s; }
.wdb-cc-card-d.wdb-cc-in-view .wdb-cc-star-fill-wrap:nth-child(5) .wdb-cc-star-fg { clip-path: inset(0 0 0 0); transition-delay: 0.5s; }

/* ==========================================================================
   MODEL E — Gradient Reveal
   ========================================================================== */
.wdb-cc-card-e {
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}

.wdb-cc-card-e:hover {
    box-shadow: 0 16px 48px rgba(34,197,94,0.06);
}

.wdb-cc-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #06b6d4, #8b5cf6, #22c55e);
    background-size: 300% 100%;
    animation: wdb-cc-gradient 4s linear infinite;
}

@keyframes wdb-cc-gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.wdb-cc-card-e .wdb-cc-body {
    padding: 24px;
}

.wdb-cc-card-e .wdb-cc-text {
    font-size: 14px; line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin: 0 0 20px;
    position: relative;
    padding-left: 20px;
}

.wdb-cc-card-e .wdb-cc-text::before {
    content: '';
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 3px;
    background: linear-gradient(180deg, #22c55e, transparent);
    border-radius: 2px;
}

.wdb-cc-card-e .wdb-cc-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wdb-cc-card-e .wdb-cc-footer .wdb-cc-info { flex: 1; }

.wdb-cc-card-e .wdb-cc-footer h3 { font-size: 14px; font-weight: 700; }
.wdb-cc-card-e .wdb-cc-footer p { margin-top: 1px; }

/* Stars spin animation (Model E) */
.wdb-cc-star-spin {
    width: 14px; height: 14px;
    fill: #f59e0b;
    opacity: 0;
    transform: scale(0.5) rotate(-30deg);
    transition: all 0.3s ease;
}

.wdb-cc-card-e.wdb-cc-in-view .wdb-cc-star-spin:nth-child(1) { opacity: 1; transform: scale(1) rotate(0); transition-delay: 0.15s; }
.wdb-cc-card-e.wdb-cc-in-view .wdb-cc-star-spin:nth-child(2) { opacity: 1; transform: scale(1) rotate(0); transition-delay: 0.25s; }
.wdb-cc-card-e.wdb-cc-in-view .wdb-cc-star-spin:nth-child(3) { opacity: 1; transform: scale(1) rotate(0); transition-delay: 0.35s; }
.wdb-cc-card-e.wdb-cc-in-view .wdb-cc-star-spin:nth-child(4) { opacity: 1; transform: scale(1) rotate(0); transition-delay: 0.45s; }
.wdb-cc-card-e.wdb-cc-in-view .wdb-cc-star-spin:nth-child(5) { opacity: 1; transform: scale(1) rotate(0); transition-delay: 0.55s; }

/* ==========================================================================
   MODEL F — Pulse
   ========================================================================== */
.wdb-cc-card-f {
    background: linear-gradient(145deg, #0d1117, #161b22);
    border: 1px solid rgba(34,197,94,0.08);
    border-radius: 20px;
    padding: 30px 26px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}

.wdb-cc-card-f:hover {
    transform: translateY(-4px);
    border-color: rgba(34,197,94,0.2);
    box-shadow: 0 16px 48px rgba(34,197,94,0.06);
}

/* Ping */
.wdb-cc-ping {
    position: absolute;
    top: 20px; right: 20px;
    width: 10px; height: 10px;
}

.wdb-cc-ping::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #22c55e;
    border-radius: 50%;
}

.wdb-cc-ping::after {
    content: '';
    position: absolute;
    top: -3px; left: -3px;
    width: 16px; height: 16px;
    border: 2px solid #22c55e;
    border-radius: 50%;
    opacity: 0;
}

.wdb-cc-card-f.wdb-cc-in-view .wdb-cc-ping::after {
    animation: wdb-cc-ping 1.5s ease-out 0.5s;
}

@keyframes wdb-cc-ping {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.wdb-cc-card-f .wdb-cc-stars-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.wdb-cc-verified {
    font-size: 11px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase;
    color: #22c55e;
    opacity: 0.7;
}

/* Stars rise animation (Model F) */
.wdb-cc-star-rise-wrap {
    width: 18px; height: 18px;
    position: relative;
    overflow: hidden;
}

.wdb-cc-star-rise-wrap svg {
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
}

.wdb-cc-star-rise-wrap .wdb-cc-star-bg { fill: rgba(255,255,255,0.08); }
.wdb-cc-star-rise-wrap .wdb-cc-star-fg {
    fill: #22c55e;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wdb-cc-card-f.wdb-cc-in-view .wdb-cc-star-rise-wrap:nth-child(1) .wdb-cc-star-fg { transform: translateY(0); transition-delay: 0.2s; }
.wdb-cc-card-f.wdb-cc-in-view .wdb-cc-star-rise-wrap:nth-child(2) .wdb-cc-star-fg { transform: translateY(0); transition-delay: 0.3s; }
.wdb-cc-card-f.wdb-cc-in-view .wdb-cc-star-rise-wrap:nth-child(3) .wdb-cc-star-fg { transform: translateY(0); transition-delay: 0.4s; }
.wdb-cc-card-f.wdb-cc-in-view .wdb-cc-star-rise-wrap:nth-child(4) .wdb-cc-star-fg { transform: translateY(0); transition-delay: 0.5s; }
.wdb-cc-card-f.wdb-cc-in-view .wdb-cc-star-rise-wrap:nth-child(5) .wdb-cc-star-fg { transform: translateY(0); transition-delay: 0.6s; }

.wdb-cc-card-f .wdb-cc-text {
    font-size: 15px; line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin: 0 0 24px;
    font-style: italic;
}

.wdb-cc-card-f .wdb-cc-text::before {
    content: '\201C';
    font-size: 36px; font-weight: 800;
    color: #22c55e; opacity: 0.2;
    line-height: 0; vertical-align: sub;
    margin-right: 4px;
}

.wdb-cc-card-f .wdb-cc-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.wdb-cc-card-f .wdb-cc-author .wdb-cc-avatar {
    border-radius: 12px;
    border: 2px solid rgba(34,197,94,0.2);
}

.wdb-cc-card-f .wdb-cc-author .wdb-cc-info { flex: 1; }

.wdb-cc-card-f .wdb-cc-author .wdb-cc-info p {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}

/* ==========================================================================
   GLASS EFFECT
   ========================================================================== */
.wdb-cc-glass {
    background: rgba(255,255,255,0.03) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: rgba(255,255,255,0.08) !important;
}

/* ==========================================================================
   FADE EDGES (Opacity nos slides das extremidades)
   ========================================================================== */
.wdb-cc-has-fade .swiper-slide {
    opacity: var(--wdb-cc-fade-opacity, 0.3);
    transition: opacity 0.4s ease;
}

.wdb-cc-has-fade .swiper-slide-active,
.wdb-cc-has-fade .swiper-slide-active ~ .swiper-slide:not(.swiper-slide-next ~ .swiper-slide) {
    opacity: 1;
}

/* When showing multiple slides, keep visible ones at full opacity */
.wdb-cc-has-fade .swiper-slide-visible {
    opacity: 1;
}

.wdb-cc-has-fade .swiper-slide:not(.swiper-slide-visible) {
    opacity: var(--wdb-cc-fade-opacity, 0.3);
}

/* ==========================================================================
   CAROUSEL MODE
   ========================================================================== */
.wdb-cc-carousel-wrap {
    position: relative;
    width: 100%;
}

.wdb-cc-slider {
    overflow: clip;
    overflow-clip-margin: 20px;
}

.wdb-cc-slider .swiper-slide {
    height: auto;
}

.wdb-cc-slider .swiper-slide > div {
    height: 100%;
}

/* Navigation */
.wdb-cc-nav {
    margin-top: 30px;
}

.wdb-cc-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wdb-cc-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.wdb-cc-nav-btn:hover {
    border-color: #22c55e;
    background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
    color: #22c55e;
}

.wdb-cc-nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

/* Pagination bullets */
.wdb-cc-nav .swiper-pagination {
    position: relative;
    width: auto;
    bottom: auto;
}

.wdb-cc-nav .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.wdb-cc-nav .swiper-pagination-bullet-active {
    background: #22c55e;
    transform: scale(1.3);
}

/* Pagination fraction */
.wdb-cc-nav .swiper-pagination-fraction {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    width: auto;
}

/* Pagination progressbar */
.wdb-cc-nav .swiper-pagination-progressbar {
    position: relative;
    width: 120px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
}

.wdb-cc-nav .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #22c55e;
    border-radius: 2px;
}

/* ==========================================================================
   ENTRANCE ANIMATIONS
   ========================================================================== */
.wdb-cc-anim-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.wdb-card-cliente[data-entrance="fade_scale"] .wdb-cc-anim-item {
    transform: scale(0.9);
}

.wdb-cc-anim-item.wdb-cc-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ==========================================================================
   MODEL G — STAR WALL
   ========================================================================== */

.wdb-cc-card-g {
    position: relative;
    background: rgba(15, 20, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 24px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wdb-cc-card-g:hover {
    border-color: rgba(255, 200, 55, 0.2);
    box-shadow: 0 0 30px rgba(255, 200, 55, 0.06);
}

/* Ambient glow */
.wdb-cc-g-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 200, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Stars */
.wdb-cc-g-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.wdb-cc-g-star {
    width: 18px;
    height: 18px;
    fill: #ffc837;
    filter: drop-shadow(0 0 4px rgba(255, 200, 55, 0.4));
    opacity: 0;
    transform: scale(0.5);
    animation: wdbCcStarPop 0.4s ease forwards;
}

@keyframes wdbCcStarPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Text */
.wdb-cc-card-g .wdb-cc-text {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
}

/* Divider */
.wdb-cc-g-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 200, 55, 0.15), transparent);
    margin-bottom: 16px;
}

/* Footer */
.wdb-cc-g-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.wdb-cc-card-g .wdb-cc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 200, 55, 0.3);
}

.wdb-cc-card-g .wdb-cc-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.wdb-cc-card-g .wdb-cc-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin: 2px 0 0;
    line-height: 1.3;
}

/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */
@media (max-width: 1024px) {
    .wdb-cc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    .wdb-cc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Navigation smaller on mobile */
    .wdb-cc-nav-btn {
        width: 38px;
        height: 38px;
    }
}
