/* ==========================================================================
   A Coletiva — Main Stylesheet
   Colors, typography and layout derived from the Figma design.
   ========================================================================== */

/* ---- Custom Properties ---- */
:root {
    --c-primary:     #8d4baa;
    --c-primary-h:   #7a3f94;
    --c-dark:        #282c48;
    --c-white:       #ffffff;
    --c-bg-light:    #f5f5f5;
    --c-neutral-200: #e5e5e5;
    --c-neutral-300: #d4d4d4;
    --c-neutral-600: #525252;
    --c-text:        #0a0a0a;
    --ff:            ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
                     "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
                     "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --container:     1280px;
    --container-sm:  896px;
    --radius:        0;
    --header-h:      80px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff); color: var(--c-text); background: var(--c-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---- Utility ---- */
.container     { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: 1.5rem; }
.text-center   { text-align: center; }
.mt-lg         { margin-top: 3rem; }
.sr-only       { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-neutral-200);
    height: var(--header-h);
}
.header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo__img  { height: 40px; width: 40px; object-fit: contain; }
.logo__text { font-weight: 600; letter-spacing: -0.02em; color: var(--c-dark); font-size: 1rem; }

/* Nav */
.nav        { display: none; }
.nav__list  { display: flex; gap: 2rem; }
.nav__item  { }
.nav__link,
.nav__list a {
    color: var(--c-neutral-600);
    font-size: 0.9375rem;
    transition: color .2s;
}
.nav__link:hover,
.nav__list a:hover { color: var(--c-primary); }

/* Hamburger */
.nav-toggle        { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-toggle__bar   { width: 24px; height: 2px; background: var(--c-dark); transition: .3s; }

/* Mobile menu open */
.nav--open {
    display: block;
    position: absolute;
    inset: var(--header-h) 0 auto;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-neutral-200);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.nav--open .nav__list { flex-direction: column; gap: 1.25rem; }

@media (min-width: 768px) {
    .nav          { display: block; }
    .nav-toggle   { display: none; }
}

/* WP admin-bar fix */
body.admin-bar .header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .header { top: 46px; } }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: background .2s, color .2s, border-color .2s;
}
.btn--filled {
    background: var(--c-primary);
    color: var(--c-white);
    border-color: var(--c-primary);
}
.btn--filled:hover {
    background: var(--c-primary-h);
    border-color: var(--c-primary-h);
}
.btn--outline {
    background: var(--c-white);
    color: var(--c-primary);
    border-color: var(--c-primary);
}
.btn--outline:hover {
    background: var(--c-primary);
    color: var(--c-white);
}
.btn--outline-sm {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-primary);
    border: 2px solid var(--c-primary);
    border-radius: var(--radius);
    transition: background .2s, color .2s;
}
.btn--outline-sm:hover {
    background: var(--c-primary);
    color: var(--c-white);
}

/* Link arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-primary);
    font-weight: 500;
    transition: gap .2s;
}
.link-arrow:hover { gap: 0.75rem; }
.link-arrow--light { color: var(--c-neutral-300); }
.link-arrow--light:hover { color: var(--c-white); }

.section__link { margin-top: 0.25rem; margin-bottom: 2rem; }
.section__link .btn--ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1.5px solid var(--c-primary);
    color: var(--c-primary);
    background: transparent;
    transition: background .2s, color .2s, gap .2s;
}
.section__link .btn--ghost:hover {
    background: var(--c-primary);
    color: var(--c-white);
    gap: 0.75rem;
}
.section__link .btn--ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1.5px solid rgba(255,255,255,.35);
    color: var(--c-neutral-200);
    background: transparent;
    transition: background .2s, color .2s, border-color .2s, gap .2s;
}
.section__link .btn--ghost-light:hover {
    border-color: var(--c-white);
    color: var(--c-white);
    background: rgba(255,255,255,.08);
    gap: 0.75rem;
}

/* ==========================================================================
   SECTIONS — shared
   ========================================================================== */
.section        { padding: 5rem 0; }
.section--dark  { background: var(--c-dark); }

.section__title {
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--c-dark);
    margin-bottom: 1rem;
}
.section__title--light { color: var(--c-white); }

@media (min-width: 768px) {
    .section       { padding: 7rem 0; }
    .section__title { font-size: 2.25rem; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero           { background: var(--c-white); padding: 6rem 0 8rem; }
.hero__inner    { max-width: var(--container-sm); margin: 0 auto; text-align: center; padding-inline: 1.5rem; }
.hero__title    {
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--c-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.hero__sub      { color: var(--c-neutral-600); font-size: 1.125rem; max-width: 640px; margin: 0 auto 2.5rem; }
.hero__actions  { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

@media (min-width: 640px)  { .hero__title { font-size: 3.75rem; } }
@media (min-width: 768px)  { .hero { padding: 8rem 0 10rem; } }

/* ==========================================================================
   SOBRE (About)
   ========================================================================== */
.sobre__grid   { display: grid; gap: 3rem; align-items: center; }
.sobre__p      { color: var(--c-neutral-300); line-height: 1.8; margin-bottom: 1rem; }
.sobre__p:last-of-type { margin-bottom: 2rem; }

.sobre__image  { display: flex; align-items: center; justify-content: center; background: transparent; }
.sobre__image img { width: auto; max-width: 100%; height: auto; max-height: 560px; object-fit: contain; filter: none; }

@media (min-width: 768px) {
    .sobre__grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   GRID
   ========================================================================== */
.grid        { display: grid; gap: 2rem; }
.grid--3     { }
.grid--4     { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   CARDS (Projects & Articles)
   ========================================================================== */
.card          { display: flex; flex-direction: column; }
.card__thumb   { overflow: hidden; background: var(--c-neutral-200); margin-bottom: 1.5rem; }
.card__thumb--landscape { aspect-ratio: 3/2; }
.card__thumb--portrait  { aspect-ratio: 4/5; }

.card__img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(1);
    transition: filter .3s, transform .3s;
}
.card:hover .card__img,
.card__img:hover {
    filter: grayscale(0);
    transform: scale(1.03);
}

.card__title       { font-size: 1.0625rem; font-weight: 500; color: var(--c-dark); margin-bottom: 0.75rem; }
.card__title--light { color: var(--c-white); }
.card__excerpt     { color: var(--c-neutral-600); line-height: 1.75; margin-bottom: 1.5rem; flex-grow: 1; }

.card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.card__link:hover .card__img {
    filter: grayscale(0);
    transform: scale(1.03);
}
.card__link:hover .card__title {
    color: var(--c-primary);
}

/* ==========================================================================
   MATERIAIS
   ========================================================================== */
.materiais__header { margin-bottom: 3rem; }
.materiais__desc   { margin-top: 1rem; color: var(--c-neutral-600); max-width: 640px; }

.material          { text-align: center; }
.material__thumb   { aspect-ratio: 1; overflow: hidden; background: var(--c-neutral-200); margin-bottom: 1rem; }
.material__thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .3s; }
.material__thumb:hover img { filter: grayscale(0); }
.material__name    { font-weight: 500; color: var(--c-dark); }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta__inner { max-width: var(--container-sm); margin: 0 auto; text-align: center; padding-inline: 1.5rem; }
.cta__text  { color: var(--c-neutral-300); margin-bottom: 2rem; max-width: 600px; margin-inline: auto; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer        { border-top: 1px solid var(--c-neutral-200); padding: 4rem 0 2rem; }
.footer__grid  { display: grid; gap: 2.5rem; margin-bottom: 3rem; }

.footer__tagline { color: var(--c-neutral-600); font-size: 0.875rem; margin-top: 0.75rem; }

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--c-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.footer__heading--mt { margin-top: 1.5rem; }

.footer__list li   { margin-bottom: 0.5rem; color: var(--c-neutral-600); font-size: 0.875rem; }
.footer__list li a { color: var(--c-neutral-600); transition: color .2s; }
.footer__list li a:hover { color: var(--c-primary); }

.footer__social    { display: flex; gap: 1rem; }
.footer__social a  { color: var(--c-neutral-600); font-size: 0.875rem; transition: color .2s; }
.footer__social a:hover { color: var(--c-primary); }

.footer__copy {
    text-align: center;
    color: var(--c-neutral-600);
    font-size: 0.8125rem;
    padding-top: 2rem;
    border-top: 1px solid var(--c-neutral-200);
}

@media (min-width: 768px) {
    .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* ==========================================================================
   PLACEHOLDERS (shown when no images uploaded yet)
   ========================================================================== */
.placeholder-img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, var(--c-neutral-200) 0%, #ddd 100%);
}
.section--dark .placeholder-img {
    background: linear-gradient(135deg, #3a3e5c 0%, #4a4e6c 100%);
}

/* Coming soon */
.coming-soon {
    font-size: 1.25rem;
    color: var(--c-neutral-600);
    font-style: italic;
    padding: 2rem 0;
}
.coming-soon--light {
    color: var(--c-neutral-300);
}

/* ==========================================================================
   SINGLE / ARCHIVE pages (inner page styling)
   ========================================================================== */
.page-header {
    padding: 4rem 0 2rem;
    background: var(--c-dark);
}
.page-header__title {
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--c-white);
    letter-spacing: -0.025em;
}
.page-header__desc {
    color: var(--c-neutral-300);
    margin-top: 0.75rem;
    font-size: 1.125rem;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.85;
}

.single-content {
    padding: 3rem 0 5rem;
}
.single-content__body {
    max-width: 46rem;
    margin: 0 auto;
    font-size: 1.1875rem;
    line-height: 1.85;
    color: #1c1c22;
    text-align: left;
    overflow-wrap: break-word;
}
.single-content__body h2,
.single-content__body h3,
.single-content__body h4 {
    color: var(--c-dark);
    line-height: 1.25;
    margin: 2.75rem 0 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.single-content__body h2 { font-size: 1.6rem; }
.single-content__body h3 { font-size: 1.3rem; }
.single-content__body p {
    margin-bottom: 1.4rem;
}
.single-content__body a {
    color: var(--c-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.single-content__body a:hover { color: var(--c-primary-h); }
.single-content__body ul,
.single-content__body ol {
    margin: 0 0 1.4rem 1.4rem;
    padding: 0;
}
.single-content__body li { margin-bottom: 0.5rem; }
.single-content__body blockquote {
    margin: 2rem 0;
    padding: 0.4rem 0 0.4rem 1.5rem;
    border-left: 3px solid var(--c-primary);
    color: var(--c-neutral-600);
    font-size: 1.05rem;
    font-style: italic;
}
.single-content__body blockquote p:last-child { margin-bottom: 0; }
.single-content__body hr {
    border: 0;
    height: 1px;
    background: var(--c-neutral-200);
    margin: 2.5rem auto;
    max-width: 8rem;
}
.single-content__body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 3px;
}
.single-content__body strong { color: #101014; }

.single-hero-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 2rem;
    background: var(--c-neutral-200);
}
.single-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}
.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid var(--c-neutral-200);
    color: var(--c-neutral-600);
    font-size: 0.875rem;
    transition: .2s;
}
.pagination a:hover { border-color: var(--c-primary); color: var(--c-primary); }
.pagination .current { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }

/* ==========================================================================
   SOBRE page
   ========================================================================== */
.sobre-page {
    display: grid;
    gap: 3rem;
}
.sobre-page__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--c-neutral-600);
    margin-bottom: 1.5rem;
}
.sobre-page__extra {
    margin-top: 2rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--c-neutral-600);
}
.sobre-page__extra p { margin-bottom: 1.25rem; }
.sobre-page__image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
@media (min-width: 768px) {
    .sobre-page { grid-template-columns: 1.2fr 1fr; align-items: start; }
}

/* ==========================================================================
   BIBLIOTECA page
   ========================================================================== */
.biblioteca-grid {
    display: grid;
    gap: 1.5rem;
}
.biblioteca-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--c-white);
    border: 1px solid var(--c-neutral-200);
    border-radius: var(--radius);
    transition: border-color .2s, box-shadow .2s;
}
.biblioteca-item:hover {
    border-color: var(--c-primary);
    box-shadow: 0 4px 12px rgba(141, 75, 170, .08);
}
.biblioteca-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-neutral-100);
    border-radius: 8px;
    color: var(--c-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}
.biblioteca-item__info { flex: 1; min-width: 0; }
.biblioteca-item__title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-dark);
    margin-bottom: 0.25rem;
}
.biblioteca-item__meta {
    font-size: 0.8125rem;
    color: var(--c-neutral-600);
}
.biblioteca-item__download {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--c-primary);
    border: 1.5px solid var(--c-primary);
    border-radius: var(--radius);
    transition: background .2s, color .2s;
}
.biblioteca-item__download:hover {
    background: var(--c-primary);
    color: var(--c-white);
}
@media (min-width: 768px) {
    .biblioteca-grid { grid-template-columns: 1fr; }
}

/* ---- Article date ---- */
.page-header__meta { margin-top: 0.75rem; font-size: 0.95rem; color: var(--c-neutral-300); }
.card__date { font-size: 0.8125rem; color: var(--c-neutral-600); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.card__date--light { color: var(--c-neutral-300); }

/* ---- Biblioteca groups ---- */
.biblioteca-group { margin-bottom: 3.5rem; }
.biblioteca-group__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-dark);
    letter-spacing: -0.01em;
    padding-bottom: 0.6rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--c-primary);
}
.biblioteca-group__desc { color: var(--c-neutral-600); margin: -0.75rem 0 1.5rem; max-width: 46rem; }
.biblioteca-item__excerpt {
    color: var(--c-neutral-600);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0.35rem 0 0.5rem;
}

/* ---- Forms (Contact Form 7) ---- */
.wpcf7 { margin-top: 2rem; }
.wpcf7 label { display: block; font-weight: 600; color: var(--c-dark); margin-bottom: 0.4rem; font-size: 0.95rem; }
.wpcf7 .req { color: var(--c-primary); }
.wpcf7 p { margin-bottom: 1.2rem; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    font: inherit;
    color: var(--c-text);
    background: var(--c-white);
    border: 1.5px solid var(--c-neutral-300);
    border-radius: var(--radius);
    transition: border-color .2s;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus { outline: none; border-color: var(--c-primary); }
.wpcf7 textarea { min-height: 150px; resize: vertical; }
.form-legend { font-weight: 700; color: var(--c-dark); margin: 1.5rem 0 0.5rem; }
.wpcf7 .wpcf7-checkbox { display: grid; gap: 0.6rem; }
.wpcf7 .wpcf7-checkbox .wpcf7-list-item { display: block; margin: 0; }
.wpcf7 .wpcf7-checkbox label { display: flex; align-items: center; gap: 0.6rem; font-weight: 400; color: var(--c-text); cursor: pointer; }
.wpcf7 .wpcf7-checkbox input { width: 1.1rem; height: 1.1rem; accent-color: var(--c-primary); }
.wpcf7 input[type="submit"] {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-weight: 500;
    color: var(--c-white);
    background: var(--c-primary);
    border: 2px solid var(--c-primary);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .2s;
}
.wpcf7 input[type="submit"]:hover { background: var(--c-primary-h); border-color: var(--c-primary-h); }
.wpcf7-response-output { margin-top: 1rem !important; padding: 0.75rem 1rem; border-radius: var(--radius); }

/* ---- Biblioteca item cover thumbnail ---- */
.biblioteca-item__cover {
    flex-shrink: 0;
    width: 62px;
    height: 88px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--c-neutral-200);
}
.biblioteca-item__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ==========================================================================
   HISTÓRIA — carousel
   ========================================================================== */
.carousel { position: relative; margin-top: 1rem; }
@media (min-width: 768px) { .carousel { padding-inline: 3.75rem; } }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform .45s cubic-bezier(.4,.0,.2,1); }
.slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .slide { grid-template-columns: 1.1fr 1fr; gap: 3.5rem; }
}
.slide__media { border-radius: 6px; overflow: hidden; background: var(--c-neutral-200); aspect-ratio: 4/3; }
.slide__img { width: 100%; height: 100%; object-fit: cover; }
.slide__media-empty {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--c-primary), var(--c-dark));
}
.slide__media-empty span {
    color: rgba(255,255,255,.92);
    font-size: 1.5rem; font-weight: 700; letter-spacing: .02em;
    text-align: center; padding: 1rem;
}
.slide__date {
    display: inline-block;
    font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--c-primary); margin-bottom: .75rem;
}
.slide__title { font-size: 1.6rem; line-height: 1.2; color: var(--c-dark); font-weight: 700; margin-bottom: 1rem; letter-spacing: -.01em; }
.slide__text { color: var(--c-neutral-600); line-height: 1.75; font-size: 1.0625rem; }
.slide__text p { margin-bottom: .75rem; }

/* controls — sit in dedicated side gutters, never over the slide text */
.carousel__btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    font-size: 1.6rem; line-height: 1; color: var(--c-primary);
    background: var(--c-white); border: 1.5px solid var(--c-neutral-200);
    box-shadow: 0 2px 10px rgba(0,0,0,.08); cursor: pointer; z-index: 2;
    transition: background .2s, color .2s, border-color .2s;
}
.carousel__btn:hover { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }
.carousel__btn--prev { left: 0; }
.carousel__btn--next { right: 0; }
/* On desktop the carousel has side padding; center the buttons on the slide row
   (subtract half the dots area below the viewport so they align with the slide, not the whole block). */
@media (min-width: 768px) {
    .carousel__btn { display: flex; top: calc(50% - 1.4rem); }
}
.carousel__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-neutral-300); transition: background .2s, transform .2s; }
.carousel__dot.is-active { background: var(--c-primary); transform: scale(1.25); }
