/*
 * Plant Console — Product Field Components Frontend Styles
 *
 * Brand Palette
 *   Bloom     : #E4E9E1  (--pc-bloom)
 *   Sage      : #AFDABF  (--pc-sage)
 *   Mint      : #559A75  (--pc-mint)
 *   Amazon    : #306C49  (--pc-amazon)
 *   Deep Teal : #00372A  (--pc-deep-teal)
 *   White     : #ffffff  (--pc-white)
 *
 * Greyscale
 *   Iron      : #D1D3D4  (--pc-iron)
 *   Aluminium : #A7A9AC  (--pc-aluminium)
 *   Stone     : #808285  (--pc-stone)
 *   Nevada    : #6D6E71  (--pc-nevada)
 *   Thunder   : #231F20  (--pc-thunder)
 *
 * @package PlantCupid_WooCommerce_Sync
 * @since   3.0.0
 */

/* ── Custom Properties ─────────────────────────────────────────── */
.pcws-fields {
    /* Brand Palette */
    --pc-bloom:         #E4E9E1;
    --pc-sage:          #AFDABF;
    --pc-mint:          #559A75;
    --pc-amazon:        #306C49;
    --pc-deep-teal:     #00372A;
    --pc-white:         #ffffff;

    /* Greyscale */
    --pc-iron:          #D1D3D4;
    --pc-aluminium:     #A7A9AC;
    --pc-stone:         #808285;
    --pc-nevada:        #6D6E71;
    --pc-thunder:       #231F20;

    --pc-text:          #231F20;
    --pc-text-muted:    #6D6E71;
    --pc-border:        #D1D3D4;
    --pc-radius:        10px;
    --pc-radius-sm:     6px;
    --pc-shadow:        0 2px 8px rgba(0, 55, 42, .07);
    --pc-transition:    0.22s ease;
    --pc-font:          inherit;
}

/* =========================================================================
   STANDALONE COMPONENT CARD SHELL
   Shared by: Common Names, Care Notes, Health Warnings, Deciduous Notice
   Matches the "enclosed header + curved border" style from the mock design.
   ========================================================================= */

.pcws-common-names,
.pcws-care-notes,
.pcws-warnings,
.pcws-deciduous {
    margin: 0;                              /* outer spacing via Elementor */
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    overflow: hidden;
}

/* ── Shared card header row ──────────────────────────────────── */
.pcws-common-names__heading,
.pcws-care-notes__heading,
.pcws-warnings__heading,
.pcws-deciduous__heading {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--pc-font);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--pc-amazon);
    background: var(--pc-bloom);
    border-bottom: 2px solid var(--pc-sage);
    padding: 11px 20px;
    margin: 0;
}

/* ── Shared header SVG icon ──────────────────────────────────── */
.pcws-common-names__heading svg,
.pcws-care-notes__heading svg,
.pcws-deciduous__heading svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--pc-mint);
}

/* Warnings icon stays red */
.pcws-warnings__heading svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #c0392b;
}

/* =========================================================================
   COMMON NAMES — card body
   ========================================================================= */

.pcws-common-names__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 16px 20px;
}

.pcws-common-names__item {
    background: var(--pc-bloom);
    border: 1px solid var(--pc-sage);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .875rem;
    color: var(--pc-deep-teal);
    font-weight: 500;
    line-height: 1.4;
}

/* =========================================================================
   CARE NOTES — card body
   ========================================================================= */

.pcws-care-notes__body {
    padding: 16px 20px;
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--pc-text);
}

.pcws-care-notes__body p:last-child { margin-bottom: 0; }

/* =========================================================================
   ACCORDION SHELL
   ========================================================================= */

/* No outer margin — spacing is controlled by the Elementor widget container */
.pcws-accordion {
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    overflow: hidden;
}

/* ── Panel ────────────────────────────────────────────── */
.pcws-accordion__panel {
    border-bottom: 1px solid var(--pc-border);
}

.pcws-accordion__panel:last-child { border-bottom: none; }

/* ── Panel Header / Toggle Button ────────────────────── */
.pcws-accordion__toggle {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 11px 20px;
    background: var(--pc-sage);                 /* inactive: Sage (#AFDABF) */
    border: none;
    border-bottom: 2px solid var(--pc-mint);    /* matches card header divider */
    cursor: pointer;
    text-align: left;
    font-family: var(--pc-font);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--pc-amazon);                    /* matches card header text */
    transition: background var(--pc-transition), border-color var(--pc-transition);
    line-height: 1.3;
}

.pcws-accordion__toggle:hover  { background: var(--pc-bloom); border-bottom-color: var(--pc-sage); }
.pcws-accordion__toggle:active { background: var(--pc-bloom); border-bottom-color: var(--pc-sage); }

/* Mouse clicks: no outline — let the transition run cleanly */
.pcws-accordion__toggle:focus        { outline: none; }
/* Keyboard navigation: show a clear green ring */
.pcws-accordion__toggle:focus-visible {
    outline: 2px solid var(--pc-amazon);
    outline-offset: -2px;
}

.pcws-accordion__panel.is-open > .pcws-accordion__toggle {
    background: var(--pc-bloom);               /* active: Bloom (#E4E9E1) */
    border-bottom-color: var(--pc-sage);
    color: var(--pc-amazon);
}

.pcws-accordion__icon {
    flex-shrink: 0;
    width: 14px;                                /* matches card header icon size */
    height: 14px;
    color: var(--pc-mint);                      /* matches card header icon colour */
}

.pcws-accordion__chevron {
    margin-left: auto;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--pc-text-muted);
    transition: transform var(--pc-transition);
}

.pcws-accordion__panel.is-open > .pcws-accordion__toggle .pcws-accordion__chevron {
    transform: rotate(180deg);
}

/* ── Panel Body ───────────────────────────────────────── */
.pcws-accordion__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease, padding .25s ease;
    padding: 0 18px;
    background: #fff;
}

.pcws-accordion__panel.is-open > .pcws-accordion__body {
    max-height: 2000px;
    padding: 18px;
}

/* =========================================================================
   MONTH CALENDAR
   ========================================================================= */

.pcws-calendar {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4px;
}

.pcws-calendar__month {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pcws-calendar__block {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    border-radius: 4px;
    border: 1px solid var(--pc-border);
    background: #fff;
    transition: background var(--pc-transition), border-color var(--pc-transition);
}

.pcws-calendar__block--active {
    background: var(--pc-amazon);
    border-color: var(--pc-deep-teal);
}

.pcws-calendar__label {
    font-size: .6rem;
    color: var(--pc-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.pcws-calendar__label--active {
    color: var(--pc-deep-teal);
}

@media (max-width: 480px) {
    .pcws-calendar__label { font-size: .5rem; }
}

/* =========================================================================
   SIZE & MATURITY CARDS
   ========================================================================= */

.pcws-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Force a lone last card to fill the full row */
.pcws-spec-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.pcws-spec-card {
    background: var(--pc-bloom);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-sm);
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.pcws-spec-card__icon {
    width: 22px;
    height: 22px;
    color: var(--pc-mint);
    margin-bottom: 2px;
    flex-shrink: 0;
}

.pcws-spec-card__label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--pc-text-muted);
}

.pcws-spec-card__value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pc-deep-teal);
    line-height: 1.1;
}

.pcws-spec-card__sub {
    font-size: .7rem;
    color: var(--pc-text-muted);
    margin-top: 1px;
}

/* Growth rate pip dots */
.pcws-growth-pips {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 4px;
}

.pcws-growth-pip {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pc-border);
    flex-shrink: 0;
}

.pcws-growth-pip--on {
    background: var(--pc-amazon);
}

/* =========================================================================
   GROWING CONDITIONS
   ========================================================================= */

.pcws-conditions-group {
    margin-bottom: 14px;
}

.pcws-conditions-group:last-child { margin-bottom: 0; }

.pcws-conditions-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--pc-text-muted);
    margin-bottom: 8px;
}

.pcws-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pcws-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pc-bloom);
    border: 1px solid var(--pc-sage);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .875rem;
    color: var(--pc-deep-teal);
    font-weight: 500;
}

/* Chip with inline SVG icon: reduce left padding so icon+text are balanced */
.pcws-chip.pcws-chip--has-icon {
    padding-left: 10px;
}

.pcws-chip__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--pc-amazon);
}

/* =========================================================================
   DECIDUOUS NOTICE — body content
   Card shell + heading row are handled by the shared rules above.
   The body mirrors .pcws-care-notes__body for consistent layout.
   ========================================================================= */

.pcws-deciduous__body {
    padding: 16px 20px;
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--pc-text);
}

.pcws-deciduous__body p:last-child { margin-bottom: 0; }

/* =========================================================================
   HEALTH WARNINGS — card body
   (The outer card shell is defined in the shared section above.)
   ========================================================================= */

.pcws-warnings__body {
    /* Outer spacing so the inner warning box doesn't touch the card edges */
    margin: 14px 16px 16px;
    /* Inner warning box */
    background: #fff8f7;
    border: 1px solid #f5c6c2;
    border-left: 4px solid #c0392b;
    border-radius: var(--pc-radius-sm);
    padding: 12px 14px;
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--pc-text);
}

.pcws-warnings__body p:last-child { margin-bottom: 0; }

/* =========================================================================
   HARDINESS RATING
   ========================================================================= */

.pcws-hardiness {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pcws-hardiness__header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.pcws-hardiness__code {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pc-deep-teal);
    line-height: 1;
}

.pcws-hardiness__label {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--pc-amazon);
}

.pcws-hardiness__description {
    font-size: .875rem;
    color: var(--pc-text);
    line-height: 1.6;
    margin: 0;
}

/* Temperature bar */
.pcws-hardiness__temp-bar-wrap {
    margin-top: 4px;
}

.pcws-hardiness__temp-labels {
    display: flex;
    justify-content: space-between;
    font-size: .7rem;
    color: var(--pc-text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.pcws-hardiness__temp-track {
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg,
        #1e88e5 0%,      /* Very cold  */
        #42a5f5 25%,     /* Cold       */
        #80cbc4 50%,     /* Mild       */
        #a5d6a7 70%,     /* Warm       */
        #ffcc80 85%,     /* Hot        */
        #ff8a65 100%     /* Tropical   */
    );
    position: relative;
}

.pcws-hardiness__temp-marker {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--pc-deep-teal);
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 4px rgba(0,0,0,.3);
}

.pcws-hardiness__temp-range {
    font-size: .75rem;
    color: var(--pc-text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* =========================================================================
   COLOUR SWATCHES
   ========================================================================= */

.pcws-colour-group {
    margin-bottom: 14px;
}

.pcws-colour-group:last-child { margin-bottom: 0; }

.pcws-colour-group__label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--pc-text-muted);
    margin-bottom: 8px;
}

.pcws-colour-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pcws-colour-swatch {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--pc-bloom);
    border: 1px solid var(--pc-border);
    border-radius: 20px;
    padding: 4px 12px 4px 4px;
    font-size: .875rem;
    color: var(--pc-deep-teal);
}

.pcws-colour-swatch__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.12);
    flex-shrink: 0;
}

.pcws-colour-swatch__dot--unknown {
    background: repeating-linear-gradient(
        45deg,
        var(--pc-border) 0,
        var(--pc-border) 2px,
        transparent 2px,
        transparent 8px
    );
}

/* =========================================================================
   WIDGET THEME OVERRIDES
   Applied via a .pcws-widget-theme wrapper div emitted by the widget/shortcode
   when a theme other than "default" is chosen.

   Available themes
   ─────────────────────────────────────────────────────────────────────────
   pcws-theme-sage-bloom    Default brand palette (base CSS, no overrides)
   pcws-theme-forest-white  Deep Forest headers · white accordion body
   pcws-theme-forest-sage   Deep Forest headers · Sage (#AFDABF) widget bodies
   ========================================================================= */

/* ── Forest White ─────────────────────────────────────────────────────── */

.pcws-theme-forest-white .pcws-accordion,
.pcws-theme-forest-white .pcws-common-names,
.pcws-theme-forest-white .pcws-care-notes,
.pcws-theme-forest-white .pcws-warnings,
.pcws-theme-forest-white .pcws-deciduous {
    background: #00372A;
    border-color: #306C49;
}

.pcws-theme-forest-white .pcws-accordion__toggle {
    background: #306C49;
    color: #E4E9E1;
    border-bottom-color: #559A75;
}

.pcws-theme-forest-white .pcws-accordion__toggle:hover,
.pcws-theme-forest-white .pcws-accordion__panel.is-open > .pcws-accordion__toggle {
    background: #00372A;
    color: #AFDABF;
    border-bottom-color: #306C49;
}

.pcws-theme-forest-white .pcws-accordion__icon { color: #AFDABF; }
.pcws-theme-forest-white .pcws-accordion__panel.is-open > .pcws-accordion__toggle .pcws-accordion__icon { color: #AFDABF; }

.pcws-theme-forest-white .pcws-accordion__body {
    background: #ffffff;
    color: #231F20;
}

.pcws-theme-forest-white .pcws-common-names__heading,
.pcws-theme-forest-white .pcws-care-notes__heading,
.pcws-theme-forest-white .pcws-warnings__heading,
.pcws-theme-forest-white .pcws-deciduous__heading {
    background: #00372A;
    color: #AFDABF;
    border-bottom-color: #306C49;
}

.pcws-theme-forest-white .pcws-common-names__heading svg,
.pcws-theme-forest-white .pcws-care-notes__heading svg,
.pcws-theme-forest-white .pcws-deciduous__heading svg { color: #559A75; }

.pcws-theme-forest-white .pcws-common-names__item { background: #306C49; border-color: #559A75; color: #E4E9E1; }
.pcws-theme-forest-white .pcws-care-notes__body   { color: #E4E9E1; }
.pcws-theme-forest-white .pcws-warnings__body     { color: #231F20; }
.pcws-theme-forest-white .pcws-deciduous__body    { color: #E4E9E1; }

/* Size & Maturity spec cards — Sage on white body */
.pcws-theme-forest-white .pcws-spec-card { background: #ffffff; border-color: #D1D3D4; }
.pcws-theme-forest-white .pcws-spec-card__value   { color: #00372A; }
.pcws-theme-forest-white .pcws-spec-card__icon    { color: #559A75; }
.pcws-theme-forest-white .pcws-spec-card__sub     { color: #6D6E71; }
.pcws-theme-forest-white .pcws-accordion__panel[data-panel="size"] .pcws-spec-card       { background: #AFDABF; border-color: #559A75; }
.pcws-theme-forest-white .pcws-accordion__panel[data-panel="size"] .pcws-spec-card__value { color: #00372A; }
.pcws-theme-forest-white .pcws-accordion__panel[data-panel="size"] .pcws-spec-card__icon  { color: #306C49; }
.pcws-theme-forest-white .pcws-accordion__panel[data-panel="size"] .pcws-spec-card__sub   { color: #306C49; }

.pcws-theme-forest-white .pcws-growth-pip     { background: #D1D3D4; }
.pcws-theme-forest-white .pcws-growth-pip--on { background: #306C49; }

.pcws-theme-forest-white .pcws-calendar__block--active { background: #AFDABF; border-color: #559A75; }
.pcws-theme-forest-white .pcws-calendar__label--active { color: #00372A; }
.pcws-theme-forest-white .pcws-calendar__label         { color: #6D6E71; }

.pcws-theme-forest-white .pcws-chip             { background: #E4E9E1; border-color: #AFDABF; color: #00372A; }
.pcws-theme-forest-white .pcws-chip__icon       { color: #306C49; }
.pcws-theme-forest-white .pcws-colour-swatch    { background: #ffffff; border-color: #D1D3D4; color: #231F20; }
.pcws-theme-forest-white .pcws-conditions-label { color: #6D6E71; }
.pcws-theme-forest-white .pcws-colour-group__label { color: #6D6E71; }

.pcws-theme-forest-white .pcws-hardiness__code        { color: #00372A; }
.pcws-theme-forest-white .pcws-hardiness__label       { color: #306C49; }
.pcws-theme-forest-white .pcws-hardiness__description { color: #231F20; }
.pcws-theme-forest-white .pcws-hardiness__temp-range  { color: #6D6E71; }

/* ── Forest Sage ──────────────────────────────────────────────────────── */

.pcws-theme-forest-sage .pcws-accordion,
.pcws-theme-forest-sage .pcws-common-names,
.pcws-theme-forest-sage .pcws-care-notes,
.pcws-theme-forest-sage .pcws-warnings,
.pcws-theme-forest-sage .pcws-deciduous {
    background: #00372A;
    border-color: #306C49;
}

.pcws-theme-forest-sage .pcws-accordion__toggle {
    background: #306C49;
    color: #E4E9E1;
    border-bottom-color: #559A75;
}

.pcws-theme-forest-sage .pcws-accordion__toggle:hover,
.pcws-theme-forest-sage .pcws-accordion__panel.is-open > .pcws-accordion__toggle {
    background: #00372A;
    color: #AFDABF;
    border-bottom-color: #306C49;
}

.pcws-theme-forest-sage .pcws-accordion__icon { color: #AFDABF; }
.pcws-theme-forest-sage .pcws-accordion__panel.is-open > .pcws-accordion__toggle .pcws-accordion__icon { color: #AFDABF; }

.pcws-theme-forest-sage .pcws-accordion__body {
    background: #ffffff;
    color: #231F20;
}

.pcws-theme-forest-sage .pcws-common-names__heading,
.pcws-theme-forest-sage .pcws-care-notes__heading,
.pcws-theme-forest-sage .pcws-warnings__heading,
.pcws-theme-forest-sage .pcws-deciduous__heading {
    background: #00372A;
    color: #AFDABF;
    border-bottom-color: #306C49;
}

.pcws-theme-forest-sage .pcws-common-names__heading svg,
.pcws-theme-forest-sage .pcws-care-notes__heading svg,
.pcws-theme-forest-sage .pcws-deciduous__heading svg { color: #559A75; }

/* Sage widget bodies */
.pcws-theme-forest-sage .pcws-deciduous__body    { background: #AFDABF; color: #00372A; }
.pcws-theme-forest-sage .pcws-common-names__list { background: #AFDABF; }
.pcws-theme-forest-sage .pcws-common-names__item { background: #ffffff; border-color: #559A75; color: #00372A; }
.pcws-theme-forest-sage .pcws-care-notes__body   { background: #AFDABF; color: #00372A; }
.pcws-theme-forest-sage .pcws-warnings__body     { background: #AFDABF; color: #00372A; }

/* Size & Maturity spec cards — Sage on white body */
.pcws-theme-forest-sage .pcws-spec-card { background: #ffffff; border-color: #D1D3D4; }
.pcws-theme-forest-sage .pcws-spec-card__value   { color: #00372A; }
.pcws-theme-forest-sage .pcws-spec-card__icon    { color: #559A75; }
.pcws-theme-forest-sage .pcws-spec-card__sub     { color: #6D6E71; }
.pcws-theme-forest-sage .pcws-accordion__panel[data-panel="size"] .pcws-spec-card        { background: #AFDABF; border-color: #559A75; }
.pcws-theme-forest-sage .pcws-accordion__panel[data-panel="size"] .pcws-spec-card__value { color: #00372A; }
.pcws-theme-forest-sage .pcws-accordion__panel[data-panel="size"] .pcws-spec-card__icon  { color: #306C49; }
.pcws-theme-forest-sage .pcws-accordion__panel[data-panel="size"] .pcws-spec-card__sub   { color: #306C49; }

.pcws-theme-forest-sage .pcws-growth-pip     { background: #D1D3D4; }
.pcws-theme-forest-sage .pcws-growth-pip--on { background: #306C49; }

.pcws-theme-forest-sage .pcws-calendar__block--active { background: #AFDABF; border-color: #559A75; }
.pcws-theme-forest-sage .pcws-calendar__label--active { color: #00372A; }
.pcws-theme-forest-sage .pcws-calendar__label         { color: #6D6E71; }

.pcws-theme-forest-sage .pcws-chip             { background: #AFDABF; border-color: #559A75; color: #00372A; }
.pcws-theme-forest-sage .pcws-chip__icon       { color: #306C49; }
.pcws-theme-forest-sage .pcws-colour-swatch    { background: #AFDABF; border-color: #D1D3D4; color: #231F20; }
.pcws-theme-forest-sage .pcws-conditions-label { color: #6D6E71; }
.pcws-theme-forest-sage .pcws-colour-group__label { color: #6D6E71; }

.pcws-theme-forest-sage .pcws-hardiness__code        { color: #00372A; }
.pcws-theme-forest-sage .pcws-hardiness__label       { color: #306C49; }
.pcws-theme-forest-sage .pcws-hardiness__description { color: #231F20; }
.pcws-theme-forest-sage .pcws-hardiness__temp-range  { color: #6D6E71; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 560px) {
    .pcws-calendar {
        gap: 3px;
    }

    .pcws-spec-grid {
        grid-template-columns: 1fr;
    }

    /* On very small screens single-card rule is irrelevant as all are 1-col */
    .pcws-spec-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .pcws-accordion__toggle {
        padding: 10px 14px;
    }

    .pcws-accordion__panel.is-open > .pcws-accordion__body {
        padding: 14px;
    }
}
