.cnsw {
    --green: #0b6f54;
    --green-dark: #123c33;
    --mint: #eff8f3;
    --paper: #ffffff;
    --muted: #5d716b;
    --line: rgba(11, 111, 84, .2);
    --gold: #e7b84b;
    --shadow: 0 24px 70px rgba(18, 60, 51, .09);
    position: relative;
    padding: var(--cnsw-pad, 72px) clamp(18px, 4vw, 42px);
    color: var(--green-dark);
    font-family: inherit;
    overflow: hidden;
}

.cnsw-white {
    background: #fff;
}

.cnsw-soft {
    background:
        linear-gradient(180deg, rgba(239, 248, 243, .75), rgba(255, 255, 255, .92)),
        #fff;
}

.cnsw-line {
    background: #fbfdfb;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cnsw-dark {
    background:
        radial-gradient(circle at 15% 10%, rgba(231, 184, 75, .18), transparent 28%),
        linear-gradient(135deg, #123c33, #0b6f54);
    color: #fff;
    --green-dark: #fff;
    --muted: rgba(255, 255, 255, .78);
    --line: rgba(255, 255, 255, .22);
}

.cnsw-inner {
    position: relative;
    z-index: 1;
    width: min(var(--cnsw-width, 1120px), 100%);
    margin: 0 auto;
}

.cnsw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 0 0 22px;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--green);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.2;
    box-shadow: 0 8px 24px rgba(18, 60, 51, .04);
}

.cnsw-dark .cnsw-kicker {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.cnsw-kicker::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.cnsw-title {
    max-width: 880px;
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(32px, 4.7vw, 58px);
    line-height: 1.035;
    font-weight: 900;
    letter-spacing: 0;
}

.cnsw-hero .cnsw-title {
    max-width: 760px;
    font-size: clamp(44px, 6.9vw, 82px);
    line-height: .99;
}

.cnsw-text {
    max-width: 760px;
    margin-top: 20px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.62;
}

.cnsw-text p {
    margin: 0 0 .85em;
}

.cnsw-hero-layout,
.cnsw-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(330px, .94fr);
    gap: clamp(34px, 6vw, 92px);
    align-items: center;
}

.cnsw-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.cnsw-center {
    justify-content: center;
}

.cnsw-btn,
.cnsw-card-link,
.cnsw-choice-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 21px;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: var(--green);
    color: #fff !important;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cnsw-btn:hover,
.cnsw-card-link:hover,
.cnsw-choice-link:hover {
    transform: translateY(-2px);
    background: #095c46;
    border-color: #095c46;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(18, 60, 51, .16);
}

.cnsw-btn-light {
    background: rgba(255, 255, 255, .75);
    color: var(--green) !important;
}

.cnsw-dark .cnsw-btn-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .55);
    color: #fff !important;
}

.cnsw-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.cnsw-square-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 0;
}

.cnsw-card {
    position: relative;
    display: flex;
    min-height: 182px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px;
    border: 1px solid rgba(11, 111, 84, .16);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 253, 251, .96));
    color: #123c33 !important;
    text-decoration: none !important;
    box-shadow: 0 18px 44px rgba(18, 60, 51, .065);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    overflow: hidden;
}

.cnsw-card::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 18px;
    width: 36px;
    height: 36px;
    border-top: 1px solid rgba(11, 111, 84, .18);
    border-right: 1px solid rgba(11, 111, 84, .18);
    opacity: .55;
}

.cnsw-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 111, 84, .42);
    background: #fff;
    box-shadow: 0 28px 68px rgba(18, 60, 51, .12);
}

.cnsw-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 20px;
}

.cnsw-dot {
    width: 12px;
    height: 12px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 8px rgba(11, 111, 84, .08);
}

.cnsw-card h3 {
    margin: 0;
    color: #123c33;
    font-size: 22px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}

.cnsw-card p {
    margin: 11px 0 0;
    color: #5f756f;
    font-size: 15px;
    line-height: 1.48;
}

.cnsw-card-link {
    width: fit-content;
    min-height: 38px;
    margin-top: auto;
    padding: 9px 15px;
    font-size: 14px;
}

.cnsw-square-grid .cnsw-card {
    aspect-ratio: 1 / 1;
    min-height: 0;
    justify-content: center;
    align-items: flex-start;
}

.cnsw-steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    counter-reset: step;
}

.cnsw-steps-grid .cnsw-card {
    counter-increment: step;
    padding-top: 62px;
}

.cnsw-steps-grid .cnsw-card::before {
    content: counter(step);
    position: absolute;
    left: 24px;
    top: 22px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.cnsw-downloads .cnsw-card {
    border-left: 4px solid var(--green);
}

.cnsw-cta-box,
.cnsw-notice-box {
    max-width: 920px;
    margin: 0 auto;
    min-height: 0;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    text-align: center;
    box-shadow: var(--shadow);
}

.cnsw-dark .cnsw-cta-box,
.cnsw-dark .cnsw-notice-box {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.cnsw-cta-box .cnsw-title,
.cnsw-notice-box .cnsw-title {
    display: block;
    color: var(--green-dark) !important;
}

.cnsw-cta-box .cnsw-text,
.cnsw-notice-box .cnsw-text {
    display: block;
    color: var(--muted) !important;
}

.cnsw-dark .cnsw-cta-box .cnsw-title,
.cnsw-dark .cnsw-notice-box .cnsw-title {
    color: #fff !important;
}

.cnsw-dark .cnsw-cta-box .cnsw-text,
.cnsw-dark .cnsw-notice-box .cnsw-text {
    color: rgba(255, 255, 255, .82) !important;
}

.cnsw-cta-box .cnsw-kicker,
.cnsw-cta-box .cnsw-title,
.cnsw-cta-box .cnsw-text,
.cnsw-notice-box .cnsw-kicker,
.cnsw-notice-box .cnsw-title,
.cnsw-notice-box .cnsw-text {
    margin-left: auto;
    margin-right: auto;
}

.cnsw-visual {
    min-height: 380px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(11, 111, 84, .08), transparent),
        #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cnsw-main-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.cnsw-split .cnsw-dot,
.cnsw-showcase .cnsw-dot {
    width: 100%;
    height: 100%;
    min-height: 380px;
    margin: 0;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(11, 111, 84, .08), transparent),
        #fff;
    box-shadow: none;
}

.cnsw-iban {
    margin-top: 30px;
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    color: #123c33;
}

.cnsw-iban strong {
    display: block;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.cnsw-iban span {
    display: block;
    margin-top: 10px;
    color: #5f756f;
}

.cnsw-chooser {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
    gap: 22px;
    width: 100%;
    margin-top: 34px;
    align-items: stretch;
}

.cnsw-choice-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
}

.cnsw .cnsw-choice,
.cnsw .cnsw-choice[type="button"] {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    min-height: 78px !important;
    padding: 15px 16px !important;
    border: 1px solid rgba(11, 111, 84, .22) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .86) !important;
    color: #123c33 !important;
    font: inherit !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    cursor: pointer !important;
    box-shadow: 0 10px 26px rgba(18, 60, 51, .045) !important;
    transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease !important;
}

.cnsw .cnsw-choice:hover,
.cnsw .cnsw-choice.is-active,
.cnsw .cnsw-choice[type="button"]:hover,
.cnsw .cnsw-choice[type="button"].is-active {
    transform: translateX(5px) !important;
    border-color: rgba(11, 111, 84, .48) !important;
    background: #fff !important;
    color: var(--green) !important;
    box-shadow: 0 16px 36px rgba(18, 60, 51, .09) !important;
}

.cnsw .cnsw-choice.is-active {
    outline: 3px solid rgba(11, 111, 84, .08) !important;
}

.cnsw-choice .cnsw-icon,
.cnsw-choice .cnsw-dot {
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    flex: 0 0 auto;
}

.cnsw-choice span {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.cnsw-choice-result {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(18, 60, 51, .96), rgba(11, 111, 84, .92));
    color: #fff;
    box-shadow: 0 24px 62px rgba(18, 60, 51, .17);
    overflow: hidden;
}

.cnsw-choice-result::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 22px;
    width: 54px;
    height: 54px;
    border-top: 1px solid rgba(255, 255, 255, .28);
    border-right: 1px solid rgba(255, 255, 255, .28);
}

.cnsw-choice-result h3 {
    position: relative;
    max-width: 680px;
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(28px, 4.2vw, 44px);
    line-height: 1.05;
    font-weight: 900;
}

.cnsw-choice-result p {
    position: relative;
    max-width: 700px;
    margin: 0 0 24px;
    color: #eaf4ef;
    font-size: 18px;
    line-height: 1.62;
}

@media (max-width: 980px) {
    .cnsw-hero-layout,
    .cnsw-split-layout,
    .cnsw-chooser {
        grid-template-columns: 1fr;
    }

    .cnsw-grid,
    .cnsw-square-grid,
    .cnsw-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cnsw-choice-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cnsw .cnsw-choice:hover,
    .cnsw .cnsw-choice.is-active {
        transform: translateY(-3px) !important;
    }
}

@media (max-width: 640px) {
    .cnsw {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cnsw-hero .cnsw-title {
        font-size: clamp(34px, 11vw, 50px);
    }

    .cnsw-grid,
    .cnsw-square-grid,
    .cnsw-steps-grid {
        grid-template-columns: 1fr;
    }

    .cnsw-choice-list {
        grid-template-columns: 1fr;
    }

    .cnsw .cnsw-choice,
    .cnsw .cnsw-choice[type="button"] {
        min-height: 72px !important;
        padding: 14px !important;
    }

    .cnsw-card {
        min-height: 142px;
        padding: 23px;
        border-radius: 15px;
    }

    .cnsw-square-grid .cnsw-card {
        aspect-ratio: auto;
    }

    .cnsw-actions {
        flex-direction: column;
    }

    .cnsw-btn {
        width: 100%;
    }

    .cnsw-choice-result {
        min-height: 0;
        padding: 24px;
    }

    .cnsw-visual,
    .cnsw-main-image,
    .cnsw-split .cnsw-dot,
    .cnsw-showcase .cnsw-dot {
        min-height: 260px;
    }
}

/* Interactive layer */
.cnsw-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.cnsw-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cnsw-card,
.cnsw-choice,
.cnsw-live-node {
    position: relative;
    transform-style: preserve-3d;
}

.cnsw-card:hover,
.cnsw-choice:hover {
    transform: translateY(-5px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.cnsw-card::before,
.cnsw-choice::before,
.cnsw-live-node::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(231, 184, 75, .18), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}

.cnsw-card:hover::before,
.cnsw-choice:hover::before,
.cnsw-live-node:hover::before {
    opacity: 1;
}

.cnsw-live-scene {
    min-height: min(860px, calc(100vh - 90px));
    background:
        radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 28%), rgba(231, 184, 75, .17), transparent 24%),
        linear-gradient(135deg, #0d332d, #0b6f54 58%, #123c33);
    color: #fff;
    isolation: isolate;
}

.cnsw-live-scene.cnsw-soft,
.cnsw-live-scene.cnsw-white {
    background:
        radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 28%), rgba(231, 184, 75, .18), transparent 24%),
        linear-gradient(135deg, #f7fbf8, #ffffff);
    color: #123c33;
}

.cnsw-live-scene .cnsw-inner {
    min-height: min(700px, calc(100vh - 170px));
    display: flex;
    align-items: center;
}

.cnsw-live-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    pointer-events: none;
}

.cnsw-live-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: clamp(30px, 6vw, 86px);
    align-items: center;
    width: 100%;
}

.cnsw-live-scene .cnsw-kicker {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
}

.cnsw-live-scene.cnsw-soft .cnsw-kicker,
.cnsw-live-scene.cnsw-white .cnsw-kicker {
    background: rgba(255, 255, 255, .72);
    color: var(--green);
    border-color: var(--line);
}

.cnsw-live-scene .cnsw-title {
    max-width: 760px;
    color: #fff;
    font-size: clamp(42px, 6.4vw, 86px);
    line-height: .98;
}

.cnsw-live-scene.cnsw-soft .cnsw-title,
.cnsw-live-scene.cnsw-white .cnsw-title {
    color: #123c33;
}

.cnsw-live-scene .cnsw-text {
    color: rgba(255, 255, 255, .82);
}

.cnsw-live-scene.cnsw-soft .cnsw-text,
.cnsw-live-scene.cnsw-white .cnsw-text {
    color: #5f756f;
}

.cnsw-live-status {
    margin-top: 32px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.cnsw-live-scene.cnsw-soft .cnsw-live-status,
.cnsw-live-scene.cnsw-white .cnsw-live-status {
    border-color: var(--line);
    background: rgba(255, 255, 255, .72);
}

.cnsw-live-status span {
    display: block;
    width: 38px;
    height: 3px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--gold);
}

.cnsw-live-status strong {
    display: block;
    color: inherit;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
}

.cnsw-live-status p {
    margin: 10px 0 0;
    color: inherit;
    opacity: .82;
    line-height: 1.55;
}

.cnsw-live-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cnsw-live-node {
    display: flex;
    min-height: 164px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 24px 58px rgba(0, 0, 0, .13);
    overflow: hidden;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.cnsw-live-scene.cnsw-soft .cnsw-live-node,
.cnsw-live-scene.cnsw-white .cnsw-live-node {
    border-color: rgba(11, 111, 84, .2);
    background: rgba(255, 255, 255, .86);
    color: #123c33;
}

.cnsw-live-node:hover,
.cnsw-live-node.is-active {
    transform: translateY(-6px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    border-color: rgba(231, 184, 75, .62);
    background: rgba(255, 255, 255, .16);
}

.cnsw-live-scene.cnsw-soft .cnsw-live-node:hover,
.cnsw-live-scene.cnsw-soft .cnsw-live-node.is-active,
.cnsw-live-scene.cnsw-white .cnsw-live-node:hover,
.cnsw-live-scene.cnsw-white .cnsw-live-node.is-active {
    background: #fff;
}

.cnsw-live-node .cnsw-icon,
.cnsw-live-node .cnsw-dot {
    width: 48px;
    height: 48px;
    margin: 0;
}

.cnsw-live-link {
    grid-column: 1 / -1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    border-radius: 999px;
    background: var(--gold);
    color: #123c33 !important;
    text-decoration: none !important;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease;
}

.cnsw-live-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
}

.cnsw-live-scene.is-shifting .cnsw-live-status,
.cnsw-live-scene.is-shifting .cnsw-live-link {
    animation: cnswSceneShift .36s ease both;
}

@keyframes cnswSceneShift {
    0% { transform: translateY(8px); opacity: .45; }
    100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 980px) {
    .cnsw-live-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cnsw-live-scene,
    .cnsw-live-scene .cnsw-inner {
        min-height: auto;
    }

    .cnsw-live-board {
        grid-template-columns: 1fr;
    }

    .cnsw-live-node {
        min-height: 116px;
    }
}
/* Human pass: atelier/carnet scout, less template-like */
.cnsw {
  position: relative;
  overflow: clip;
}

.cnsw::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(16, 61, 51, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 61, 51, .035) 1px, transparent 1px);
  background-size: 34px 34px, 34px 34px;
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 72%);
}

.cnsw-inner {
  z-index: 1;
}

.cnsw-title {
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.cnsw-kicker {
  transform: rotate(-.7deg);
  border-style: dashed !important;
}

.cnsw-card,
.cnsw-choice,
.cnsw-choice-result,
.cnsw-cta-box,
.cnsw-notice-box,
.cnsw-visual {
  border-radius: 6px !important;
  border-color: rgba(20, 76, 63, .22) !important;
}

.cnsw-card:hover {
  transform: translateY(-4px) !important;
}

.cnsw-hero .cnsw-square-grid .cnsw-card:nth-child(1),
.cnsw-downloads .cnsw-card:nth-child(1) {
  border-left: 5px solid #0b6f54 !important;
}

.cnsw-hero .cnsw-square-grid .cnsw-card:nth-child(2),
.cnsw-downloads .cnsw-card:nth-child(2) {
  border-left: 5px solid #d7a83f !important;
}

.cnsw-hero .cnsw-square-grid .cnsw-card:nth-child(3),
.cnsw-downloads .cnsw-card:nth-child(3) {
  border-left: 5px solid #315b7a !important;
}

.cnsw-hero .cnsw-square-grid .cnsw-card:nth-child(4),
.cnsw-downloads .cnsw-card:nth-child(4) {
  border-left: 5px solid #0f8a75 !important;
}

.cnsw-steps-grid .cnsw-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 38px;
  height: 8px;
  border-bottom: 2px solid rgba(215, 168, 63, .55);
  transform: rotate(-6deg);
}

.cnsw-choice-result {
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(247,250,247,.78)),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(15,70,58,.045) 31px 32px) !important;
}

.cnsw-chooser {
  align-items: stretch !important;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.35fr) !important;
  justify-items: stretch !important;
}

.cnsw-choice-list {
  align-content: stretch !important;
  justify-items: stretch !important;
  max-width: none !important;
}

.cnsw .cnsw-choice,
.cnsw .cnsw-choice[type="button"] {
  width: 100% !important;
  min-height: 88px !important;
  justify-items: start !important;
  text-align: left !important;
  transform: none;
}

.cnsw .cnsw-choice:hover,
.cnsw .cnsw-choice[type="button"]:hover {
  transform: translateX(3px) !important;
}

.cnsw .cnsw-choice.is-active,
.cnsw .cnsw-choice[type="button"].is-active {
  transform: none !important;
}

.cnsw-choice-result {
  min-height: 100% !important;
  color: #123c33 !important;
}

.cnsw-choice-result h3,
.cnsw-choice-result p {
  color: inherit !important;
}

.cnsw-dark {
  background:
    radial-gradient(circle at var(--cnsw-page-x, 45%) var(--cnsw-page-y, 35%), rgba(237, 194, 86, .16), transparent 32%),
    linear-gradient(122deg, #103b32, #075f4b 58%, #0b765d) !important;
}

@media (max-width: 767px) {
  .cnsw-chooser {
    grid-template-columns: 1fr !important;
  }

  .cnsw .cnsw-choice,
  .cnsw .cnsw-choice[type="button"] {
    min-height: 74px !important;
  }
}

/* Cleaner content widgets: the decorative mini pictos were too small to read and
   were taking space away from the real content. The floating ambient pictos stay
   handled by the separate ambient extension. */
.cnsw-card > .cnsw-icon,
.cnsw-card > .cnsw-dot,
.cnsw-choice > .cnsw-icon,
.cnsw-choice > .cnsw-dot {
  display: none !important;
}

.cnsw-square-grid .cnsw-card {
  aspect-ratio: auto !important;
  min-height: clamp(190px, 23vw, 236px) !important;
  justify-content: center !important;
  padding: clamp(22px, 3vw, 30px) !important;
}

.cnsw-card h3 {
  max-width: 11ch;
}

.cnsw-card p {
  max-width: 22ch;
}

.cnsw-card-link {
  margin-top: 18px !important;
}

.cnsw-chooser {
  grid-template-columns: 1fr !important;
  gap: clamp(18px, 3vw, 32px) !important;
}

.cnsw-choice-list {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.cnsw .cnsw-choice,
.cnsw .cnsw-choice[type="button"] {
  grid-template-columns: 1fr !important;
  min-height: 72px !important;
  padding: 18px 22px !important;
}

.cnsw-choice span {
  width: 100%;
}

.cnsw-choice-result {
  width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(280px, 34vw, 420px) !important;
  padding: clamp(34px, 5vw, 70px) !important;
}

.cnsw-choice-result h3,
.cnsw-choice-result p {
  max-width: none !important;
}

.cnsw-choice-result p {
  font-size: clamp(17px, 1.8vw, 21px) !important;
}

@media (max-width: 767px) {
  .cnsw-square-grid .cnsw-card {
    min-height: 170px !important;
  }

  .cnsw-card h3,
  .cnsw-card p {
    max-width: none;
  }

  .cnsw-choice-list {
    grid-template-columns: 1fr !important;
  }

  .cnsw-choice-result {
    min-height: 260px !important;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .cnsw-choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.cnsw-steps-grid .cnsw-card::after {
  content: none !important;
  display: none !important;
}
