/*
 * AESONLABS — CLICKING HARD DRIVE DATA RECOVERY
 * Interactive clicking-pattern visualizer.
 *
 * Locked filename:
 * /assets/css/aesonlabs-clicking-drive-page.css
 *
 * Visual direction intentionally follows the existing HDD family-guide module:
 * compact selector row, light technical visual panel, balanced summary panel,
 * restrained service-page typography.
 */

.aeson-clicking-patterns,
.aeson-clicking-patterns * {
    box-sizing: border-box;
}

.aeson-clicking-patterns {
    --acp-ink: #294455;
    --acp-copy: #71828e;
    --acp-muted: #85949d;
    --acp-blue: #2693ba;
    --acp-blue-deep: #2d667e;
    --acp-blue-pale: #f1f8fb;
    --acp-border: #d6e1e7;
    --acp-border-soft: #e4ecef;
    --acp-panel: #ffffff;
    --acp-panel-soft: #f8fafb;
    --acp-grid: rgba(75, 116, 137, .055);
    --acp-red: #c94a4d;
    --acp-orange: #b98343;
    --acp-green: #4b8a72;

    width: 100%;
    margin: 0;
    color: var(--acp-ink);
    font-family: "Open Sans", sans-serif;

    /* The service page has a sidebar, so respond to actual module width. */
    container-type: inline-size;
}

.aeson-clicking-patterns button,
.aeson-clicking-patterns p,
.aeson-clicking-patterns h2,
.aeson-clicking-patterns h3,
.aeson-clicking-patterns h4,
.aeson-clicking-patterns span,
.aeson-clicking-patterns strong {
    font-family: "Open Sans", sans-serif;
}

/* ==========================================================
   INTRO
   ========================================================== */

.acp-intro {
    margin: 0 0 24px;
}

.acp-eyebrow,
.acp-panel-kicker,
.acp-info-eyebrow,

.acp-intro h2 {
    max-width: 900px;
    margin: 0 0 10px;
    padding: 0;
    color: var(--acp-ink);
    font-size: 34px;
    font-weight: 300;
    line-height: 1.22;
    letter-spacing: -.35px;
}

.acp-lead {
    max-width: 900px;
    margin: 0;
    padding: 0;
    color: var(--acp-copy);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.68;
}

/* ==========================================================
   PATTERN SELECTOR
   ========================================================== */

.acp-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0 18px;
}

.acp-tab {
    position: relative;
    min-width: 0;
    min-height: 112px;
    padding: 15px 16px 32px;
    overflow: hidden;
    appearance: none;
    color: var(--acp-ink);
    background: #f7f9fa;
    border: 1px solid #d3dfe5;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    box-shadow: none;
    transition:
        border-color .18s ease,
        background-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.acp-tab:hover {
    transform: translateY(-1px);
    border-color: #b9d0db;
    background: #fbfcfd;
}

.acp-tab.is-active {
    background: #f2f9fc;
    border-color: var(--acp-blue);
    box-shadow: inset 0 3px 0 var(--acp-blue);
}


.acp-tab strong {
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 0 4px;
    color: #294455;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.acp-tab > span:not(.acp-tab__wave) {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 94%;
    color: #7b8b95;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.42;
}

.acp-tab__wave {
    position: absolute;
    right: 13px;
    bottom: 12px;
    width: 54px;
    height: 10px;
    opacity: .22;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.acp-tab.is-active .acp-tab__wave {
    opacity: .68;
}

.acp-tab__wave--beep {
    background:
        linear-gradient(90deg,
            transparent 0 9%,
            #4b8a72 9% 12%,
            transparent 12% 43%,
            #4b8a72 43% 46%,
            transparent 46% 100%);
}

.acp-tab__wave--single {
    background:
        linear-gradient(90deg,
            transparent 0 22%,
            #c94a4d 22% 25%,
            transparent 25% 100%);
}

.acp-tab__wave--random {
    background:
        linear-gradient(90deg,
            transparent 0 8%,
            #b98343 8% 11%,
            transparent 11% 25%,
            #b98343 25% 28%,
            transparent 28% 50%,
            #b98343 50% 55%,
            transparent 55% 68%,
            #b98343 68% 71%,
            transparent 71% 100%);
}

.acp-tab__wave--electrical {
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 4px,
            #2d667e 4px 6px,
            transparent 6px 8px
        );
}

/* ==========================================================
   MAIN TWO-COLUMN MODULE
   ========================================================== */

.acp-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.acp-visual-panel,
.acp-info-panel {
    min-width: 0;
    background: #fff;
    border: 1px solid var(--acp-border);
    border-radius: 16px;
    box-shadow: 0 7px 22px rgba(38, 59, 72, .04);
}

.acp-visual-panel {
    display: flex;
    flex-direction: column;
    min-height: 595px;
    padding: 17px 18px 16px;
    background:
        linear-gradient(var(--acp-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--acp-grid) 1px, transparent 1px),
        linear-gradient(180deg, #fbfcfc 0%, #f7f9fa 100%);
    background-size: 24px 24px, 24px 24px, auto;
}

.acp-panel-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 50px;
    padding: 0 0 13px;
    border-bottom: 1px solid var(--acp-border-soft);
}

.acp-panel-head > div {
    min-width: 0;
}

.acp-panel-kicker {
    margin: 0 0 2px;
    color: #788b97;
    font-size: 9px;
    letter-spacing: 1.05px;
}

.acp-panel-head strong {
    display: block;
    overflow: hidden;
    color: #314d5d;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.acp-power {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 11px;
    appearance: none;
    color: #37677b;
    background: rgba(255,255,255,.82);
    border: 1px solid #c7dce6;
    border-radius: 999px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.acp-power__icon {
    position: relative;
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    border: 1px solid #bcd6e2;
    border-radius: 50%;
    background: #eef8fb;
}

.acp-power__icon::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 9px;
    width: 2px;
    height: 8px;
    background: var(--acp-blue);
    border-radius: 2px;
    z-index: 2;
}

.acp-power__icon::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 5px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--acp-blue);
    border-top-color: transparent;
    border-radius: 50%;
}

.aeson-clicking-patterns.is-powered-off .acp-power__icon {
    background: #f4f6f7;
    border-color: #d1d9dd;
}

.aeson-clicking-patterns.is-powered-off .acp-power__icon::before {
    background: #87969f;
}

.aeson-clicking-patterns.is-powered-off .acp-power__icon::after {
    border-color: #87969f;
    border-top-color: transparent;
}

/* ==========================================================
   DRIVE STAGE
   ========================================================== */

.acp-drive-stage {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: 470px;
    padding: 16px 4px 10px;
    outline: none;
    perspective: 1500px;
    cursor: default;
}


.acp-drive-flip {
    position: relative;
    width: min(94%, 332px);
    aspect-ratio: 0.69;
    transform-style: preserve-3d;
    transition: transform .72s cubic-bezier(.2,.75,.2,1);
}

.acp-drive-stage.is-pcb .acp-drive-flip {
    transform: rotateY(180deg);
}

.acp-drive-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.acp-drive-face--pcb {
    transform: rotateY(180deg);
}

.acp-svg-host,
.acp-svg-host svg {
    display: block;
    width: 100%;
    height: 100%;
}

.acp-state-note {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin: 5px 0 0;
    padding: 11px 12px;
    color: #6f818c;
    background: rgba(236, 243, 246, .82);
    border-radius: 8px;
}

.acp-state-note__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--acp-blue-deep);
    border: 1.5px solid #839aa8;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.acp-state-note p {
    margin: 0;
    color: #6f818c;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.5;
}

/* ==========================================================
   LIGHT HARD-DRIVE ILLUSTRATION
   ========================================================== */

.acp-hdd-shadow {
    fill: rgba(53, 68, 77, .12);
}

.acp-hdd-shell {
    fill: #dedfdd;
    stroke: #8ea0aa;
    stroke-width: 4;
}

.acp-hdd-inner {
    fill: #cfd6d9;
    stroke: #aebbc1;
    stroke-width: 2;
}

.acp-hdd-recess {
    fill: #b8c2c7;
    opacity: .72;
}

.acp-hdd-screw-ring {
    fill: #8fa0aa;
    stroke: #6f828d;
    stroke-width: 1;
}

.acp-hdd-screw-core {
    fill: #eaf0f2;
}

.acp-platter-face {
    fill: url(#acpPlatterGradient);
    stroke: #9baab3;
    stroke-width: 3;
}

.acp-platter-track {
    fill: none;
    stroke: rgba(255,255,255,.42);
    stroke-width: 1.25;
}

.acp-platter-motion {
    transform-box: fill-box;
    transform-origin: center;
    animation: acp-platter-spin 1.08s linear infinite;
}

.acp-platter-motion path {
    fill: none;
    stroke: rgba(65, 101, 121, .20);
    stroke-width: 2.2;
    stroke-linecap: round;
}

.acp-spindle-outer {
    fill: #b8c1c6;
    stroke: #6f7d85;
    stroke-width: 3;
}

.acp-spindle-mid {
    fill: #7f8d95;
}

.acp-spindle-core {
    fill: #35434b;
}

.acp-hsa {
    transform-box: view-box;
    transform-origin: 208px 412px;
    will-change: transform;
}

.acp-hsa-base {
    fill: #d5d6d2;
    stroke: #8c989e;
    stroke-width: 2.2;
}

.acp-hsa-arm {
    fill: url(#acpArmGradient);
    stroke: #84929a;
    stroke-width: 2;
}

.acp-hsa-hole {
    fill: #77858d;
    stroke: #edf1f3;
    stroke-width: 1.4;
}

.acp-hsa-head {
    fill: #f8fafb;
    stroke: #758791;
    stroke-width: 1.2;
}

.acp-hsa-pivot-outer {
    fill: #aeb9bf;
    stroke: #6f7d85;
    stroke-width: 3;
}

.acp-hsa-pivot-inner {
    fill: #4a5962;
}

.acp-flex {
    fill: none;
    stroke: #c89735;
    stroke-width: 6;
    stroke-linecap: round;
}

.acp-ramp {
    fill: #73818a;
    stroke: #596b76;
    stroke-width: 2;
}

.acp-ramp-rail {
    fill: #e3e8ea;
}

.acp-fault-pulse {
    opacity: 0;
}



/* HSA suspension / head-gimbal end */
.aeson-clicking-patterns .acp-hsa-suspension {
    fill: #e7ecef;
    stroke: #87959d;
    stroke-width: 1.4;
}

/* ==========================================================
   MECHANICAL PATTERN ANIMATIONS
   ========================================================== */

.acp-drive-stage.pattern-stuck .acp-platter-motion {
    /* Head stiction: the platter cannot start. */
    animation: none !important;
    transform: rotate(0deg);
}

.acp-drive-stage.pattern-stuck .acp-hsa {
    /*
     * Base position places the sliders roughly mid-radius over the platter.
     * Motion is intentionally tiny: this is stiction/startup force, not a seek.
     */
    animation: acp-hsa-stuck .52s ease-in-out infinite;
}

.acp-drive-stage.pattern-stuck .acp-fault-pulse {
    /* No "impact" pulse for stiction; the visual cue is the tiny HSA twitch. */
    animation: none !important;
    opacity: 0 !important;
}

.acp-drive-stage.pattern-spindown .acp-platter-motion {
    /*
     * Sequence:
     * parked -> platter spin-up -> read attempt -> HSA parks ->
     * platter spins down -> short pause -> repeat.
     */
    animation: acp-platter-spindown 3.8s linear infinite;
}

.acp-drive-stage.pattern-spindown .acp-hsa {
    /*
     * 0deg is the load/unload ramp position.
     * ~-28deg places the head over the middle working area of the platter.
     */
    animation: acp-hsa-single 3.8s ease-in-out infinite;
}

.acp-drive-stage.pattern-spindown .acp-fault-pulse {
    animation: acp-fault-single 3.8s ease-out infinite;
}

.acp-drive-stage.pattern-random .acp-platter-motion {
    /*
     * Start stationary, spin up first, then remain in continuous rotation.
     * The transform values deliberately keep accumulating so the platter
     * does not visually stop between clicking cycles.
     */
    animation: acp-platter-random-running 5.4s linear infinite;
}

.acp-drive-stage.pattern-random .acp-hsa {
    /*
     * 0deg is the ONE fixed parking position in the middle of the ramp.
     * Every reset returns to exactly 0deg — never beyond it and never short.
     */
    animation: acp-hsa-random 5.4s ease-in-out infinite;
}

.acp-drive-stage.pattern-random .acp-fault-pulse {
    animation: acp-fault-random 5.4s ease-out infinite;
}

/* ==========================================================
   PCB VIEW
   ========================================================== */

.acp-pcb-board {
    fill: url(#acpPcbGradient);
    stroke: #4f8c7e;
    stroke-width: 3;
}

.acp-pcb-trace {
    fill: none;
    stroke: rgba(194, 230, 217, .50);
    stroke-width: 2;
}

.acp-pcb-chip {
    fill: #38454c;
    stroke: #7d8f98;
    stroke-width: 1.7;
}

.acp-pcb-chip-pin {
    fill: #c4ced3;
}

.acp-pcb-component {
    fill: #d9cfac;
    stroke: #857f69;
    stroke-width: 1;
}

.acp-tvs-chip {
    fill: #272d31;
    stroke: var(--acp-red);
    stroke-width: 2.5;
    animation: acp-tvs-chip .66s ease-in-out infinite;
}

.acp-tvs-ring {
    fill: none;
    stroke: var(--acp-red);
    stroke-width: 2.2;
    transform-box: fill-box;
    transform-origin: center;
    animation: acp-tvs-ring 1.05s ease-out infinite;
}

.acp-tvs-ring--2 {
    animation-delay: .28s;
}

.acp-tvs-callout {
    fill: #fff4f4;
    stroke: #e5bec0;
    stroke-width: 1.4;
}

.acp-tvs-label {
    fill: #a6383b;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.acp-pcb-tick {
    opacity: 0;
    animation: acp-pcb-tick .42s steps(1) infinite;
}

/* ==========================================================
   POWER OFF
   Power-off means a known mechanical state, not a frozen frame.
   ========================================================== */

.aeson-clicking-patterns.is-powered-off .acp-platter-motion,
.aeson-clicking-patterns.is-powered-off .acp-hsa,
.aeson-clicking-patterns.is-powered-off .acp-fault-pulse,
.aeson-clicking-patterns.is-powered-off .acp-tvs-chip,
.aeson-clicking-patterns.is-powered-off .acp-tvs-ring,
.aeson-clicking-patterns.is-powered-off .acp-pcb-tick {
    animation: none !important;
}

.aeson-clicking-patterns.is-powered-off .acp-platter-motion {
    transform: rotate(0deg) !important;
}

.aeson-clicking-patterns.is-powered-off .acp-hsa {
    /* Exact load/unload ramp parking position. */
    transform: rotate(0deg) !important;
}

.aeson-clicking-patterns.is-powered-off .acp-fault-pulse,
.aeson-clicking-patterns.is-powered-off .acp-tvs-ring,
.aeson-clicking-patterns.is-powered-off .acp-pcb-tick {
    opacity: 0 !important;
}

/* ==========================================================
   INFO PANEL
   ========================================================== */

.acp-info-panel {
    padding: 24px 24px 21px;
}

.acp-info-top {
    padding-bottom: 17px;
    border-bottom: 1px solid var(--acp-border-soft);
}

.acp-info-eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
}

.acp-info-panel h3 {
    margin: 0;
    padding: 0;
    color: var(--acp-ink);
    font-size: 28px;
    font-weight: 300;
    line-height: 1.22;
    letter-spacing: -.2px;
    text-transform: none;
}










.acp-info-section {
    padding: 17px 0;
    border-bottom: 1px solid var(--acp-border-soft);
}

.acp-info-section h4 {
    margin: 0 0 6px;
    padding: 0;
    color: #324b5a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .75px;
    text-transform: uppercase;
}

.acp-info-section p {
    margin: 0;
    padding: 0;
    color: var(--acp-copy);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
}

.acp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 17px;
}

.acp-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 5px 10px;
    color: var(--acp-blue-deep);
    background: #f2f8fb;
    border: 1px solid #c7dce6;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
}

/* ==========================================================
   KEYFRAMES
   ========================================================== */

@keyframes acp-platter-spin {
    to { transform: rotate(360deg); }
}

@keyframes acp-platter-spindown {
    /*
     * Start stationary. Accelerate before the HSA moves.
     * Continue at speed during the read attempt.
     * Decelerate only after the HSA has returned to the ramp.
     */
    0% {
        transform: rotate(0deg);
    }

    8% {
        transform: rotate(90deg);
    }

    18% {
        transform: rotate(420deg);
    }

    30% {
        transform: rotate(980deg);
    }

    44% {
        transform: rotate(1700deg);
    }

    56% {
        transform: rotate(2320deg);
    }

    64% {
        transform: rotate(2700deg);
    }

    72% {
        transform: rotate(2960deg);
    }

    80% {
        transform: rotate(3110deg);
    }

    87% {
        transform: rotate(3160deg);
    }

    100% {
        transform: rotate(3160deg);
    }
}

@keyframes acp-hsa-stuck {
    /*
     * The HSA's unrotated head tip is near the parking-ramp side.
     * ~-28deg places it over the middle working area of the platter.
     * Less than one degree of total travel produces a subtle "trying to start"
     * twitch instead of a sweeping seek motion.
     */
    0%,
    100% {
        transform: rotate(-28.0deg);
    }

    28% {
        transform: rotate(-27.55deg);
    }

    55% {
        transform: rotate(-28.22deg);
    }

    78% {
        transform: rotate(-27.78deg);
    }
}

@keyframes acp-hsa-single {
    /*
     * Start fully parked on the ramp.
     * Wait for platter spin-up.
     * Sweep once to the middle of the platter.
     * Make a very small failed-read/click motion.
     * Return fully to the ramp before spindle spin-down.
     */
    0%,
    23% {
        transform: rotate(0deg);
    }

    34% {
        transform: rotate(-27.5deg);
    }

    39% {
        transform: rotate(-28.4deg);
    }

    43% {
        transform: rotate(-27.8deg);
    }

    47% {
        transform: rotate(-28.1deg);
    }

    51% {
        transform: rotate(-27.8deg);
    }

    61% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes acp-hsa-random {
    /*
     * PARK = exactly 0deg.
     *
     * 0–18%: parked while platter spins up.
     * Then several irregular read attempts. Each failed attempt
     * returns to exactly the same 0deg parking position.
     *
     * No positive angles are used, therefore the HSA never travels
     * farther into / past the ramp.
     */
    0%,
    18% {
        transform: rotate(0deg);
    }

    /* attempt 1 */
    25% {
        transform: rotate(-18deg);
    }
    30% {
        transform: rotate(-25deg);
    }
    34% {
        transform: rotate(0deg);
    }

    /* attempt 2 */
    41% {
        transform: rotate(-13deg);
    }
    46% {
        transform: rotate(-29deg);
    }
    51% {
        transform: rotate(0deg);
    }

    /* attempt 3 */
    58% {
        transform: rotate(-21deg);
    }
    63% {
        transform: rotate(-16deg);
    }
    68% {
        transform: rotate(-27deg);
    }
    73% {
        transform: rotate(0deg);
    }

    /* attempt 4 */
    81% {
        transform: rotate(-11deg);
    }
    86% {
        transform: rotate(-24deg);
    }
    91% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes acp-fault-pulse {
    0%, 100% { opacity: 0; transform: scale(.65); }
    32% { opacity: .65; }
    60% { opacity: 0; transform: scale(1.4); }
}

@keyframes acp-fault-single {
    0%,
    34% {
        opacity: 0;
        transform: scale(.55);
    }

    39% {
        opacity: .9;
        transform: scale(.7);
    }

    49% {
        opacity: 0;
        transform: scale(1.65);
    }

    100% {
        opacity: 0;
        transform: scale(1.65);
    }
}

@keyframes acp-platter-random-running {
    /*
     * First cycle begins from rest and visibly accelerates.
     * After spin-up the platter keeps rotating throughout the
     * repeated clicking / parking sequence.
     */
    0% {
        transform: rotate(0deg);
    }

    6% {
        transform: rotate(70deg);
    }

    12% {
        transform: rotate(260deg);
    }

    18% {
        transform: rotate(620deg);
    }

    30% {
        transform: rotate(1420deg);
    }

    45% {
        transform: rotate(2420deg);
    }

    60% {
        transform: rotate(3420deg);
    }

    75% {
        transform: rotate(4420deg);
    }

    90% {
        transform: rotate(5420deg);
    }

    100% {
        transform: rotate(6090deg);
    }
}

@keyframes acp-fault-random {
    0%,
    26%,
    35%,
    43%,
    52%,
    60%,
    74%,
    83%,
    92%,
    100% {
        opacity: 0;
        transform: scale(.55);
    }

    30%,
    47%,
    67%,
    87% {
        opacity: .72;
        transform: scale(.72);
    }

    33%,
    50%,
    71%,
    90% {
        opacity: 0;
        transform: scale(1.45);
    }
}

@keyframes acp-tvs-chip {
    0%, 100% { fill: #272d31; }
    50% { fill: #672629; }
}

@keyframes acp-tvs-ring {
    0% { opacity: .8; transform: scale(.68); }
    100% { opacity: 0; transform: scale(1.42); }
}

@keyframes acp-pcb-tick {
    0%, 45%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* ==========================================================
   ACTUAL MODULE-WIDTH RESPONSIVE RULES
   ========================================================== */

@container (max-width: 760px) {
    .acp-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .acp-layout {
        grid-template-columns: 1fr;
    }

    .acp-visual-panel {
        min-height: 0;
    }

    .acp-drive-stage {
        height: 500px;
    }

    .acp-drive-flip {
        width: min(88%, 350px);
    }
}

@container (max-width: 470px) {
    .acp-intro h2 {
        font-size: 28px;
    }

    .acp-tabs {
        grid-template-columns: 1fr;
    }

    .acp-tab {
        min-height: 102px;
    }

    .acp-panel-head {
        grid-template-columns: 1fr;
    }

    .acp-power {
        width: max-content;
    }

    .acp-drive-stage {
        height: 450px;
        padding-inline: 0;
    }

    .acp-drive-flip {
        width: min(96%, 330px);
    }

    .acp-info-panel {
        padding: 21px 18px 19px;
    }

    .acp-info-panel h3 {
        font-size: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .acp-drive-flip,
    .acp-platter-motion,
    .acp-hsa,
    .acp-fault-pulse,
    .acp-tvs-chip,
    .acp-tvs-ring,
    .acp-pcb-tick {
        animation: none !important;
        transition: none !important;
    }
}

/* ==========================================================
   V6 COMPACT PRODUCTION OVERRIDES
   No subjective risk ranking. Designed to fit the complete
   diagram + explanation within a normal desktop viewport.
   ========================================================== */

.aeson-clicking-patterns .acp-intro {
    margin-bottom: 16px;
}

.aeson-clicking-patterns .acp-eyebrow {
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: 1.15px;
}

.aeson-clicking-patterns .acp-intro h2 {
    margin-bottom: 7px;
    max-width: 820px;
    font-size: 29px;
    line-height: 1.2;
}

.aeson-clicking-patterns .acp-lead {
    max-width: 900px;
    font-size: 14px;
    line-height: 1.55;
}

.aeson-clicking-patterns .acp-tabs {
    gap: 9px;
    margin: 15px 0 15px;
}

.aeson-clicking-patterns .acp-tab {
    min-height: 78px;
    padding: 13px 14px 21px;
    border-radius: 10px;
}

.aeson-clicking-patterns .acp-tab strong {
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 1.28;
}

.aeson-clicking-patterns .acp-tab > span:not(.acp-tab__wave) {
    max-width: 92%;
    font-size: 10px;
    line-height: 1.35;
}

.aeson-clicking-patterns .acp-tab__wave {
    right: 11px;
    bottom: 8px;
    width: 44px;
    height: 8px;
}

.aeson-clicking-patterns .acp-layout {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
    gap: 14px;
}

.aeson-clicking-patterns .acp-visual-panel,
.aeson-clicking-patterns .acp-info-panel {
    border-radius: 13px;
}

.aeson-clicking-patterns .acp-visual-panel {
    min-height: 0;
    height: 525px;
    padding: 14px 15px 13px;
    background-size: 22px 22px, 22px 22px, auto;
}

.aeson-clicking-patterns .acp-panel-head {
    min-height: 43px;
    padding-bottom: 10px;
}

.aeson-clicking-patterns .acp-panel-kicker {
    margin-bottom: 1px;
    font-size: 8px;
}

.aeson-clicking-patterns .acp-panel-head strong {
    font-size: 12px;
}

.aeson-clicking-patterns .acp-power {
    min-height: 30px;
    padding: 0 10px;
    gap: 6px;
    font-size: 9px;
}

.aeson-clicking-patterns .acp-power__icon {
    width: 19px;
    height: 19px;
}



.aeson-clicking-patterns .acp-drive-stage {
    flex: 0 0 auto;
    height: 385px;
    padding: 10px 0 5px;
}

.aeson-clicking-patterns .acp-drive-flip {
    width: min(92%, 264px);
}

.aeson-clicking-patterns .acp-state-note {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    margin-top: 3px;
    padding: 8px 10px;
    border-radius: 7px;
}

.aeson-clicking-patterns .acp-state-note__icon {
    width: 22px;
    height: 22px;
    font-size: 11px;
}

.aeson-clicking-patterns .acp-state-note p {
    font-size: 10px;
    line-height: 1.42;
}

.aeson-clicking-patterns .acp-info-panel {
    padding: 21px 22px 18px;
}

.aeson-clicking-patterns .acp-info-top {
    padding-bottom: 14px;
}

.aeson-clicking-patterns .acp-info-eyebrow {
    margin-bottom: 6px;
    font-size: 9px;
    letter-spacing: 1.05px;
}

.aeson-clicking-patterns .acp-info-panel h3 {
    font-size: 23px;
    line-height: 1.2;
}

.aeson-clicking-patterns .acp-info-section {
    padding: 14px 0;
}

.aeson-clicking-patterns .acp-info-section h4 {
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: .7px;
}

.aeson-clicking-patterns .acp-info-section p {
    font-size: 12px;
    line-height: 1.55;
}

.aeson-clicking-patterns .acp-tags {
    gap: 6px;
    padding-top: 14px;
}

.aeson-clicking-patterns .acp-tags span {
    min-height: 26px;
    padding: 4px 9px;
    font-size: 9px;
}

/* Service-column responsive behaviour based on the actual component width. */
@container (max-width: 680px) {
    .aeson-clicking-patterns .acp-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aeson-clicking-patterns .acp-layout {
        grid-template-columns: 1fr;
    }

    .aeson-clicking-patterns .acp-visual-panel {
        height: auto;
    }

    .aeson-clicking-patterns .acp-drive-stage {
        height: 430px;
    }

    .aeson-clicking-patterns .acp-drive-flip {
        width: min(90%, 295px);
    }
}

@container (max-width: 430px) {
    .aeson-clicking-patterns .acp-intro h2 {
        font-size: 25px;
    }

    .aeson-clicking-patterns .acp-tabs {
        grid-template-columns: 1fr;
    }

    .aeson-clicking-patterns .acp-tab {
        min-height: 72px;
    }

    .aeson-clicking-patterns .acp-panel-head {
        grid-template-columns: 1fr auto;
    }

    .aeson-clicking-patterns .acp-drive-stage {
        height: 400px;
    }

    .aeson-clicking-patterns .acp-info-panel h3 {
        font-size: 22px;
    }
}


.aeson-clicking-patterns.is-powered-off .acp-power {
    color: #697b86;
    background: #f4f6f7;
    border-color: #d3dde2;
}

/* ==========================================================
   V11 — SERVICE-PAGE INTRO TYPOGRAPHY
   Keep the compact infographic UI below unchanged.
   ========================================================== */

.aeson-clicking-patterns .acp-intro {
    margin: 0 0 25px;
}

.aeson-clicking-patterns .acp-eyebrow {
    display: block;
    margin: 0 0 12px;
    padding: 0;

    color: #249bc2;

    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;

    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.aeson-clicking-patterns .acp-intro h2 {
    max-width: 980px;

    margin: 0 0 15px;
    padding: 0;

    color: #30363d;

    font-family: "Open Sans", sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.24;
    letter-spacing: 0;
}

.aeson-clicking-patterns .acp-lead {
    max-width: 980px;

    margin: 0;
    padding: 0;

    color: #697179;

    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.72;
    letter-spacing: 0;
}

@container (max-width: 680px) {
    .aeson-clicking-patterns .acp-intro h2 {
        font-size: 31px;
    }

    .aeson-clicking-patterns .acp-lead {
        font-size: 17px;
    }
}

@container (max-width: 430px) {
    .aeson-clicking-patterns .acp-eyebrow {
        margin-bottom: 9px;
        font-size: 11px;
    }

    .aeson-clicking-patterns .acp-intro h2 {
        margin-bottom: 12px;
        font-size: 28px;
        line-height: 1.25;
    }

    .aeson-clicking-patterns .acp-lead {
        font-size: 16px;
        line-height: 1.65;
    }
}


/* ==========================================================
   CLICKING HARD DRIVE — FULL PAGE CONTENT SYSTEM
   Appended to the existing interactive visualizer CSS.
   ========================================================== */

.aeson-clicking-drive-page,
.aeson-clicking-drive-page * {
    box-sizing: border-box;
}

.aeson-clicking-drive-page {
    width: 100%;
    max-width: 100%;
    color: #30363d;
    font-family: "Open Sans", sans-serif;
}

.aeson-clicking-drive-page p,
.aeson-clicking-drive-page li {
    color: #697179;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.72;
}

.aeson-clicking-drive-page strong {
    color: #30363d;
    font-weight: 600;
}


/* ==========================================================
   PAGE INTRO
   ========================================================== */

.aeson-clicking-intro {
    margin: 0 0 42px;
}

.aeson-clicking-kicker,
.aeson-clicking-section-kicker {
    display: block;
    margin: 0 0 11px;
    padding: 0;

    color: #249bc2;

    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;

    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.aeson-clicking-intro h1 {
    margin: 0 0 19px;
    padding: 0;

    color: #30363d;

    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 300;
    line-height: 1.22;
    letter-spacing: 0;
}

.aeson-clicking-intro p {
    max-width: 980px;
    margin: 0 0 14px;
}

.aeson-clicking-intro p:last-child {
    margin-bottom: 0;
}

.aeson-clicking-intro-lead {
    color: #5f6870 !important;
}


/* ==========================================================
   INTERACTIVE MODULE SPACING INSIDE FULL PAGE
   ========================================================== */

.aeson-clicking-drive-page > .aeson-clicking-patterns {
    margin: 0 0 52px;
}


/* ==========================================================
   STANDARD CONTENT SECTIONS
   ========================================================== */

.aeson-clicking-section {
    margin: 0 0 54px;
}

.aeson-clicking-section-heading {
    margin: 0 0 24px;
}

.aeson-clicking-section-heading h2,
.aeson-clicking-feature-copy h2,
.aeson-clicking-dark-panel h2,
.aeson-clicking-sequence-panel h2,
.aeson-clicking-final-cta h2 {
    margin: 0 0 13px;
    padding: 0;

    color: #30363d;

    font-family: "Open Sans", sans-serif;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: 0;
}

.aeson-clicking-section-heading > p {
    max-width: 930px;
    margin: 0;
}


/* ==========================================================
   "WHAT CLICKING CAN MEAN" CARDS
   ========================================================== */

.aeson-clicking-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.aeson-clicking-card {
    position: relative;
    min-width: 0;
    padding: 24px 24px 21px;

    background: #ffffff;

    border: 1px solid #d8e1e5;
    border-top: 4px solid #2f7288;
    border-radius: 5px;

    box-shadow: 0 7px 18px rgba(31, 46, 58, .045);
}

.aeson-clicking-card-number {
    display: block;
    margin: 0 0 10px;

    color: #a0b3be;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.aeson-clicking-card h3 {
    margin: 0 0 10px;

    color: #30363d;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.aeson-clicking-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.68;
}


/* ==========================================================
   LAB WORKFLOW FEATURE SECTIONS
   Text-only now; automatically becomes 2 columns once a
   .aeson-clicking-feature-media element is added.
   ========================================================== */

.aeson-clicking-feature {
    display: block;
    width: 100%;
    margin: 0 0 44px;
}

.aeson-clicking-feature-copy {
    width: 100%;
    padding: 29px 31px 27px;

    background: #ffffff;

    border: 1px solid #d8e1e5;
    border-top: 4px solid #2f7288;
    border-radius: 5px;

    box-shadow: 0 7px 18px rgba(31, 46, 58, .045);
}

.aeson-clicking-feature-copy p {
    margin: 0 0 15px;
}

.aeson-clicking-feature-copy p:last-child {
    margin-bottom: 0;
}

/* When real photography is inserted, use:
   <figure class="aeson-clicking-feature-media">...</figure>
*/
.aeson-clicking-feature:has(.aeson-clicking-feature-media) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
    gap: 22px;
    align-items: stretch;
}

.aeson-clicking-feature-reverse:has(.aeson-clicking-feature-media)
.aeson-clicking-feature-copy {
    order: 2;
}

.aeson-clicking-feature-reverse:has(.aeson-clicking-feature-media)
.aeson-clicking-feature-media {
    order: 1;
}

.aeson-clicking-feature-media {
    margin: 0;
    padding: 0;
    overflow: hidden;

    background: #eef3f5;

    border: 1px solid #d8e1e5;
    border-radius: 5px;

    box-shadow: 0 7px 18px rgba(31, 46, 58, .045);
}

.aeson-clicking-feature-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;

    object-fit: cover;
}

.aeson-clicking-feature-media figcaption {
    padding: 11px 14px;

    color: #7a858d;
    background: #f8fafb;
    border-top: 1px solid #e1e8ec;

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================
   CALLOUT
   ========================================================== */

.aeson-clicking-callout {
    margin: 23px 0 0;
    padding: 18px 20px;

    background: #f2f7f9;

    border-left: 4px solid #249bc2;
    border-radius: 3px;
}

.aeson-clicking-callout strong {
    display: block;
    margin: 0 0 6px;

    color: #2e5668;

    font-size: 16px;
    line-height: 1.45;
}

.aeson-clicking-callout p {
    margin: 0;
    color: #68767f;
    font-size: 15px;
    line-height: 1.65;
}


/* ==========================================================
   ELECTRONICS CHECK GRID
   ========================================================== */

.aeson-clicking-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.aeson-clicking-check-item {
    padding: 21px 22px 19px;

    background: #f8fafb;

    border: 1px solid #d9e2e7;
    border-radius: 5px;
}

.aeson-clicking-check-item h3 {
    margin: 0 0 8px;

    color: #31566a;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.aeson-clicking-check-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}


/* ==========================================================
   DONOR SPLIT
   ========================================================== */

.aeson-clicking-split-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.aeson-clicking-split-list > div {
    padding: 24px 25px 22px;

    background: #ffffff;

    border: 1px solid #d8e1e5;
    border-radius: 5px;
}

.aeson-clicking-split-list h3 {
    margin: 0 0 13px;

    color: #30363d;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.aeson-clicking-split-list p {
    margin: 0 0 14px;
    font-size: 16px;
}

.aeson-clicking-split-list p:last-child {
    margin-bottom: 0;
}

.aeson-clicking-split-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.aeson-clicking-split-list li {
    position: relative;
    margin: 0;
    padding: 10px 0 10px 25px;

    border-bottom: 1px solid #e6ecef;

    font-size: 16px;
    line-height: 1.5;
}

.aeson-clicking-split-list li:last-child {
    border-bottom: 0;
}

.aeson-clicking-split-list li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 2px;

    width: 7px;
    height: 7px;

    background: #249bc2;
    border-radius: 50%;
}


/* ==========================================================
   DARK RECOVERY OBJECTIVE PANEL
   ========================================================== */

.aeson-clicking-dark-panel {
    margin: 0 0 50px;
    padding: 31px 33px 29px;

    background: #282e35;

    border-top: 5px solid #2499bd;
    border-radius: 4px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.aeson-clicking-dark-panel .aeson-clicking-section-kicker {
    color: #69c5df;
}

.aeson-clicking-dark-panel h2 {
    color: #ffffff;
}

.aeson-clicking-dark-panel p {
    max-width: 930px;
    margin: 0 0 14px;

    color: #d1d8dd;

    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}

.aeson-clicking-dark-panel p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   IMAGING STEPS
   ========================================================== */

.aeson-clicking-imaging-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.aeson-clicking-imaging-grid article {
    position: relative;
    min-width: 0;
    padding: 22px 22px 20px 59px;

    background: #ffffff;

    border: 1px solid #d8e1e5;
    border-radius: 5px;
}

.aeson-clicking-imaging-grid article > span {
    position: absolute;
    top: 22px;
    left: 20px;

    color: #9bb4c1;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.aeson-clicking-imaging-grid h3 {
    margin: 0 0 8px;

    color: #31566a;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.aeson-clicking-imaging-grid p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}


/* ==========================================================
   ENGINEERING JUDGEMENT PANEL
   ========================================================== */

.aeson-clicking-sequence-panel {
    margin: 0 0 52px;
    padding: 29px 31px 27px;

    background:
        linear-gradient(180deg, #f8fbfc 0%, #f3f7f9 100%);

    border: 1px solid #d6e1e7;
    border-top: 4px solid #2f7288;
    border-radius: 5px;
}

.aeson-clicking-sequence-panel > p {
    max-width: 930px;
    margin: 0 0 21px;
}

.aeson-clicking-sequence-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;

    margin: 0 0 21px;
}

.aeson-clicking-sequence-grid span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 55px;
    padding: 10px 12px;

    color: #31566a;
    background: #ffffff;

    border: 1px solid #d4e0e6;
    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

.aeson-clicking-sequence-closing {
    margin-bottom: 0 !important;
    padding: 15px 18px;

    color: #38586a !important;
    background: #eaf3f7;

    border-left: 4px solid #249bc2;
    border-radius: 3px;

    font-size: 15px !important;
    font-weight: 400 !important;
}


/* ==========================================================
   INTAKE GRID
   ========================================================== */

.aeson-clicking-intake-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.aeson-clicking-intake-grid > div {
    padding: 18px 20px 16px;

    background: #f8fafb;

    border: 1px solid #d9e2e7;
    border-radius: 5px;
}

.aeson-clicking-intake-grid strong {
    display: block;
    margin: 0 0 5px;

    color: #30363d;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.aeson-clicking-intake-grid span {
    display: block;

    color: #74818a;

    font-size: 14px;
    font-weight: 300;
    line-height: 1.55;
}


/* ==========================================================
   FINAL CTA
   ========================================================== */

.aeson-clicking-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 32px;
    align-items: center;

    margin: 0 0 56px;
    padding: 34px 35px;

    background: #282e35;

    border-top: 5px solid #2499bd;
    border-radius: 4px;
}

.aeson-clicking-final-cta .aeson-clicking-section-kicker {
    color: #69c5df;
}

.aeson-clicking-final-cta h2 {
    color: #ffffff;
    font-size: 30px;
}

.aeson-clicking-final-cta p {
    max-width: 900px;
    margin: 0;

    color: #d1d8dd;

    font-size: 16px;
    line-height: 1.65;
}

.aeson-clicking-final-actions {
    display: grid;
    gap: 10px;
}

.aeson-clicking-primary-cta,
.aeson-clicking-secondary-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 10px 14px;

    border-radius: 3px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;

    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;

    transition:
        background-color .18s ease,
        color .18s ease,
        border-color .18s ease;
}

.aeson-clicking-primary-cta {
    color: #ffffff !important;
    background: #cf292d;
    border: 1px solid #cf292d;
}

.aeson-clicking-primary-cta:hover,
.aeson-clicking-primary-cta:focus {
    color: #ffffff !important;
    background: #b82327;
    border-color: #b82327;
}

.aeson-clicking-secondary-cta {
    color: #ffffff !important;
    background: transparent;
    border: 1px solid rgba(255,255,255,.32);
}

.aeson-clicking-secondary-cta:hover,
.aeson-clicking-secondary-cta:focus {
    color: #ffffff !important;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.55);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media only screen and (max-width: 1100px) {
    .aeson-clicking-feature:has(.aeson-clicking-feature-media) {
        grid-template-columns: 1fr;
    }

    .aeson-clicking-feature-reverse:has(.aeson-clicking-feature-media)
    .aeson-clicking-feature-copy,
    .aeson-clicking-feature-reverse:has(.aeson-clicking-feature-media)
    .aeson-clicking-feature-media {
        order: initial;
    }

    .aeson-clicking-feature-media img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .aeson-clicking-sequence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aeson-clicking-final-cta {
        grid-template-columns: 1fr;
    }

    .aeson-clicking-final-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media only screen and (max-width: 767px) {
    .aeson-clicking-drive-page p,
    .aeson-clicking-drive-page li {
        font-size: 16px;
    }

    .aeson-clicking-intro {
        margin-bottom: 34px;
    }

    .aeson-clicking-intro h1 {
        margin-bottom: 15px;
        font-size: 32px;
    }

    .aeson-clicking-kicker,
    .aeson-clicking-section-kicker {
        font-size: 11px;
    }

    .aeson-clicking-drive-page > .aeson-clicking-patterns {
        margin-bottom: 40px;
    }

    .aeson-clicking-section {
        margin-bottom: 42px;
    }

    .aeson-clicking-section-heading h2,
    .aeson-clicking-feature-copy h2,
    .aeson-clicking-dark-panel h2,
    .aeson-clicking-sequence-panel h2,
    .aeson-clicking-final-cta h2 {
        font-size: 25px;
    }

    .aeson-clicking-card-grid,
    .aeson-clicking-check-grid,
    .aeson-clicking-split-list,
    .aeson-clicking-imaging-grid,
    .aeson-clicking-intake-grid,
    .aeson-clicking-sequence-grid {
        grid-template-columns: 1fr;
    }

    .aeson-clicking-card,
    .aeson-clicking-feature-copy,
    .aeson-clicking-split-list > div,
    .aeson-clicking-sequence-panel,
    .aeson-clicking-dark-panel {
        padding-left: 19px;
        padding-right: 19px;
    }

    .aeson-clicking-feature {
        margin-bottom: 34px;
    }

    .aeson-clicking-card h3,
    .aeson-clicking-split-list h3 {
        font-size: 18px;
    }

    .aeson-clicking-card p,
    .aeson-clicking-check-item p,
    .aeson-clicking-imaging-grid p,
    .aeson-clicking-split-list p {
        font-size: 15px;
    }

    .aeson-clicking-final-cta {
        padding: 27px 20px;
    }

    .aeson-clicking-final-actions {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   V2 — EXPLICIT SIDE-BY-SIDE IMAGE PLACEMENTS
   Same text + image-card structure used across Aesonlabs
   service pages. Replace placeholder divs with real <img>.
   ========================================================== */

.aeson-clicking-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .88fr);
    gap: 22px;
    align-items: stretch;
}

.aeson-clicking-feature-reverse .aeson-clicking-feature-copy {
    order: 2;
}

.aeson-clicking-feature-reverse .aeson-clicking-feature-media {
    order: 1;
}

.aeson-clicking-feature-copy,
.aeson-clicking-feature-media {
    min-height: 100%;
}

.aeson-clicking-feature-media {
    display: flex;
    min-width: 0;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: hidden;

    background: #f7f9fa;

    border: 1px solid #d8e1e5;
    border-radius: 5px;

    box-shadow: 0 7px 18px rgba(31, 46, 58, .045);
}

.aeson-clicking-feature-media > img {
    display: block;
    width: 100%;
    flex: 1 1 auto;
    min-height: 430px;

    object-fit: cover;
    object-position: center;
}

.aeson-clicking-feature-placeholder {
    display: flex;
    flex: 1 1 auto;
    min-height: 430px;
    padding: 30px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #6d7c86;

    background:
        linear-gradient(rgba(65, 112, 137, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 112, 137, .055) 1px, transparent 1px),
        linear-gradient(180deg, #f8fafb 0%, #eef3f5 100%);

    background-size: 24px 24px, 24px 24px, auto;

    text-align: center;
}

.aeson-clicking-feature-placeholder::before {
    content: "";
    display: block;

    width: 58px;
    height: 44px;

    margin: 0 0 17px;

    border: 2px solid #9bb1bd;
    border-radius: 4px;

    background:
        linear-gradient(145deg, transparent 0 48%, #b9cbd4 49% 55%, transparent 56%),
        linear-gradient(35deg, transparent 0 53%, #cad7dd 54% 61%, transparent 62%);
}

.aeson-clicking-feature-placeholder-label {
    display: block;
    margin: 0 0 8px;

    color: #249bc2;

    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;

    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.aeson-clicking-feature-placeholder strong {
    display: block;
    max-width: 300px;
    margin: 0 0 7px;

    color: #3b505d;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.aeson-clicking-feature-placeholder small {
    display: block;
    max-width: 300px;

    color: #7b8992;

    font-size: 12px;
    font-weight: 300;
    line-height: 1.55;
}

.aeson-clicking-feature-media figcaption,
.aeson-clicking-donor-media figcaption {
    flex: 0 0 auto;
    padding: 11px 14px;

    color: #78858d;
    background: #ffffff;

    border-top: 1px solid #dde6ea;

    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
}

/* Optional donor photo below the donor comparison cards. */
.aeson-clicking-donor-media {
    display: flex;
    max-width: 100%;
    margin: 20px 0 0;
    padding: 0;
    overflow: hidden;

    flex-direction: column;

    background: #f7f9fa;

    border: 1px solid #d8e1e5;
    border-radius: 5px;

    box-shadow: 0 7px 18px rgba(31, 46, 58, .045);
}

.aeson-clicking-donor-media .aeson-clicking-feature-placeholder {
    min-height: 300px;
}

/* Once an actual image is inserted, use this exact markup:
 *
 * <figure class="aeson-clicking-feature-media">
 *   <img src="..." alt="..." loading="lazy" decoding="async">
 *   <figcaption>...</figcaption>
 * </figure>
 */

@media only screen and (max-width: 1100px) {
    .aeson-clicking-feature {
        grid-template-columns: 1fr;
    }

    .aeson-clicking-feature-reverse .aeson-clicking-feature-copy,
    .aeson-clicking-feature-reverse .aeson-clicking-feature-media {
        order: initial;
    }

    .aeson-clicking-feature-placeholder,
    .aeson-clicking-feature-media > img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
}

@media only screen and (max-width: 767px) {
    .aeson-clicking-feature {
        gap: 14px;
        margin-bottom: 34px;
    }

    .aeson-clicking-feature-placeholder {
        padding: 24px 18px;
    }

    .aeson-clicking-feature-placeholder strong {
        font-size: 16px;
    }

    .aeson-clicking-feature-media figcaption,
    .aeson-clicking-donor-media figcaption {
        font-size: 11px;
    }
}

/* ==========================================================
   V5 — OPTIMIZED WEBP FAILURE-TYPE ICONS
   Files live in:
   /assets/img/clicking-drive-icons/

   This stylesheet lives in /assets/css/, so ../img/... keeps
   the asset URLs portable with the theme directory.
   ========================================================== */

.aeson-clicking-card {
    overflow: hidden;
}

.aeson-clicking-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;
    margin: 0 0 15px;

    background-color: #f7fbfd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 52px 52px;

    border: 1px solid #c9dbe4;
    border-radius: 13px;

    transition:
        background-color .18s ease,
        border-color .18s ease;
}

.aeson-clicking-card-icon--heads {
    background-image: url("../img/clicking-drive-icons/weak-or-failed-read-write-heads.webp");
}

.aeson-clicking-card-icon--stiction {
    background-image: url("../img/clicking-drive-icons/head-stiction.webp");
}

.aeson-clicking-card-icon--media {
    background-image: url("../img/clicking-drive-icons/platter-or-media-damage.webp");
}

.aeson-clicking-card-icon--firmware {
    background-image: url("../img/clicking-drive-icons/firmware-or-service-area-access-failure.webp");
}

.aeson-clicking-card-icon--mechanical {
    background-image: url("../img/clicking-drive-icons/spindle-or-mechanical-restriction.webp");
}

.aeson-clicking-card-icon--electrical {
    background-image: url("../img/clicking-drive-icons/electrical-failure.webp");
}

.aeson-clicking-card:hover .aeson-clicking-card-icon {
    background-color: #f2f9fc;
    border-color: #b9d3df;
}

@media only screen and (max-width: 767px) {
    .aeson-clicking-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 13px;
        border-radius: 12px;
        background-size: 47px 47px;
    }
}

/* ==========================================================
   V6 — FAILURE CARD LAYOUT POLISH
   Number on top, icon + title on one row, copy below.
   Prevent theme-level uppercase transforms on card headings.
   ========================================================== */

.aeson-clicking-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 0;
    align-items: center;
    padding: 24px 24px 22px;
}

.aeson-clicking-card-number {
    grid-column: 1 / -1;
    grid-row: 1;
    display: block;
    margin: 0 0 11px;
}

.aeson-clicking-card-icon {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    width: 62px;
    height: 62px;
    margin: 0;
    background-size: 52px 52px;
}

.aeson-clicking-card h3 {
    grid-column: 2;
    grid-row: 2;
    align-self: center;

    margin: 0;
    padding: 0;

    color: #30363d;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.32;

    text-transform: none !important;
    letter-spacing: normal !important;
}

.aeson-clicking-card p {
    grid-column: 1 / -1;
    grid-row: 3;

    margin: 14px 0 0;
}

@media only screen and (max-width: 767px) {
    .aeson-clicking-card {
        grid-template-columns: 56px minmax(0, 1fr);
        column-gap: 13px;
        padding: 20px 19px 20px;
    }

    .aeson-clicking-card-number {
        margin-bottom: 9px;
    }

    .aeson-clicking-card-icon {
        width: 56px;
        height: 56px;
        margin: 0;
        background-size: 47px 47px;
    }

    .aeson-clicking-card h3 {
        font-size: 18px;
        line-height: 1.32;
    }

    .aeson-clicking-card p {
        margin-top: 12px;
    }
}

/* ==========================================================
   V7 — PAGE HEADING CASE NORMALIZATION
   Preserve the capitalization authored in the HTML for every
   real content heading on this page. Small kickers/eyebrows
   and CTA labels keep their intentional uppercase styling.
   ========================================================== */

.aeson-clicking-drive-page h1,
.aeson-clicking-drive-page h2,
.aeson-clicking-drive-page h3,
.aeson-clicking-drive-page h4 {
    text-transform: none !important;
}

/* ==========================================================
   V8 — SPLIT INTRO / REAL LAB IMAGE PLACEMENT
   H1 + intro copy on the left, square real-lab photograph
   on the right. The page sidebar remains separate.
   ========================================================== */

.aeson-clicking-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
    gap: 34px;
    align-items: center;
    margin: 0 0 46px;
}

.aeson-clicking-intro-copy {
    min-width: 0;
}

.aeson-clicking-intro-copy p {
    max-width: none;
}

.aeson-clicking-intro-media {
    width: 100%;
    max-width: 330px;
    margin: 0;
    justify-self: end;
}

.aeson-clicking-intro-media > img,
.aeson-clicking-intro-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #d4e0e6;
    border-radius: 14px;
    background: #f6f9fa;
    box-shadow: 0 9px 26px rgba(38, 59, 72, .055);
}

.aeson-clicking-intro-media > img {
    height: auto;
    object-fit: cover;
}

.aeson-clicking-intro-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    color: #71828e;
    text-align: center;
    background:
        linear-gradient(rgba(75, 116, 137, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 116, 137, .05) 1px, transparent 1px),
        linear-gradient(145deg, #fbfcfd 0%, #f3f7f9 100%);
    background-size: 24px 24px, 24px 24px, auto;
}

.aeson-clicking-intro-placeholder span {
    margin: 0 0 10px;
    color: #249bc2;
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 1.05px;
    text-transform: uppercase;
}

.aeson-clicking-intro-placeholder strong {
    max-width: 220px;
    color: #314d5d;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.aeson-clicking-intro-placeholder small {
    display: block;
    margin-top: 9px;
    color: #8998a1;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}

.aeson-clicking-intro-media figcaption {
    margin: 9px 2px 0;
    color: #8998a1;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.45;
}

/* The content column becomes too narrow for a useful side-by-side
   hero before the main mobile breakpoint, so stack it earlier. */
@media only screen and (max-width: 980px) {
    .aeson-clicking-intro {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .aeson-clicking-intro-media {
        width: min(100%, 430px);
        max-width: 430px;
        justify-self: start;
    }
}

@media only screen and (max-width: 767px) {
    .aeson-clicking-intro {
        gap: 20px;
        margin-bottom: 38px;
    }

    .aeson-clicking-intro-media {
        width: 100%;
        max-width: 100%;
    }

    .aeson-clicking-intro-placeholder {
        min-height: 0;
    }
}

/* ==========================================================
   V10 — TEXT-ONLY FEATURE SECTIONS
   Later side-by-side image rules force every feature section
   into a two-column grid. Restore a full-width layout whenever
   that feature has no media/figure element.
   ========================================================== */

.aeson-clicking-feature:not(:has(.aeson-clicking-feature-media)) {
    display: block;
    grid-template-columns: none;
    gap: 0;
}

.aeson-clicking-feature:not(:has(.aeson-clicking-feature-media))
.aeson-clicking-feature-copy {
    width: 100%;
    min-height: 0;
    order: initial;
}

/* ==========================================================
   V11 — FINAL REAL IMAGE INTEGRATION
   ========================================================== */

.aeson-clicking-intro-media > img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border: 1px solid #d4e0e6;
    border-radius: 14px;
    background: #f6f9fa;
    box-shadow: 0 9px 26px rgba(38, 59, 72, .055);
}

.aeson-clicking-feature-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: center;
}

.aeson-clicking-donor-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media only screen and (max-width: 980px) {
    .aeson-clicking-feature-media img {
        height: auto;
        min-height: 0;
        object-fit: contain;
    }
}

/* ==========================================================
   V12 — NATIVE IMAGE ASPECT RATIOS
   Feature images keep their own proportions instead of being
   stretched/cropped to match the height of the text card.
   Source files are authored at 900px display width (or higher)
   and scale responsively within the available column.
   ========================================================== */

.aeson-clicking-feature {
    align-items: start;
}

.aeson-clicking-feature-copy,
.aeson-clicking-feature-media {
    min-height: 0;
}

.aeson-clicking-feature-media {
    display: block;
    align-self: start;
    height: auto;
    overflow: hidden;
}

.aeson-clicking-feature-media > img,
.aeson-clicking-feature-media img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    flex: none !important;
}

.aeson-clicking-feature-media figcaption {
    display: block;
}

.aeson-clicking-donor-media img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto !important;
    margin: 0 auto;
    object-fit: contain !important;
}

@media only screen and (max-width: 1100px) {
    .aeson-clicking-feature-media > img,
    .aeson-clicking-feature-media img {
        width: 100%;
        max-width: 900px;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        object-fit: contain !important;
    }
}

/* ==========================================================
   V13 — MOBILE VISUAL FIRST
   Desktop layout is unchanged. On mobile, the intro image and
   each feature image appear before their corresponding text.
   ========================================================== */

@media only screen and (max-width: 767px) {

    /* Intro: real lab image first, H1/copy second */
    .aeson-clicking-intro {
        display: flex;
        flex-direction: column;
    }

    .aeson-clicking-intro-media {
        order: 1;
    }

    .aeson-clicking-intro-copy {
        order: 2;
    }

    /* Content feature sections: image first, copy second */
    .aeson-clicking-feature {
        display: flex;
        flex-direction: column;
    }

    .aeson-clicking-feature-media {
        order: 1 !important;
        width: 100%;
    }

    .aeson-clicking-feature-copy {
        order: 2 !important;
        width: 100%;
    }

    /* Text-only feature sections remain text-only */
    .aeson-clicking-feature:not(:has(.aeson-clicking-feature-media)) {
        display: block;
    }
}

/* ==========================================================
   V14 — INTRO MEDIA TOP ALIGNMENT
   Keep the desktop hero image aligned with the top of the
   intro/H1 block instead of vertically centering it against
   the full height of the text column.
   ========================================================== */

.aeson-clicking-intro {
    align-items: start;
}

.aeson-clicking-intro-media {
    align-self: start;
    margin-top: 0;
}
