/*
 * AESONLABS — DROPPED HARD DRIVE DATA RECOVERY
 * FULL REPLACEMENT PAGE CSS
 *
 * Install as:
 * /wp-content/themes/<active-theme>/assets/css/aesonlabs-dropped-drive-page.css
 *
 * Scope:
 * .aeson-dropped-drive-page
 */


/* ==========================================================
   PAGE FOUNDATION
   ========================================================== */

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

.aeson-dropped-drive-page {
    --dd-ink: #29333d;
    --dd-heading: #263746;
    --dd-copy: #65717a;
    --dd-muted: #7d8991;
    --dd-blue: #2693ba;
    --dd-blue-deep: #2d667e;
    --dd-blue-pale: #f3f8fa;
    --dd-red: #cf2f33;
    --dd-red-deep: #ad2529;
    --dd-red-pale: #fbf6f6;
    --dd-line: #dbe4e8;
    --dd-line-soft: #e9eef1;
    --dd-panel: #f8fafb;
    --dd-dark: #252b32;
    --dd-dark-2: #293944;

    width: 100%;
    color: var(--dd-ink);
    font-family: "Open Sans", sans-serif;
}

.aeson-dropped-drive-page p,
.aeson-dropped-drive-page li,
.aeson-dropped-drive-page div {
    font-family: "Open Sans", sans-serif;
}

.aeson-dropped-drive-page p,
.aeson-dropped-drive-page li {
    color: var(--dd-copy);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.66667em;
}

.aeson-dropped-drive-page p {
    margin: 0 0 16px;
}

.aeson-dropped-drive-page ul,
.aeson-dropped-drive-page ol {
    margin: 0;
    padding: 0;
}

.aeson-dropped-drive-page h1,
.aeson-dropped-drive-page h2,
.aeson-dropped-drive-page h3 {
    clear: none;
    margin-top: 0;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    text-transform: none !important;
}

.aeson-dropped-drive-page h1 {
    margin: 0 0 18px;
    color: var(--dd-ink);
    font-size: 36px;
    font-weight: 300;
    line-height: 1.22;
    letter-spacing: -.3px;
}

.aeson-dropped-drive-page h2 {
    margin: 0 0 16px;
    color: var(--dd-heading);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.25;
}

.aeson-dropped-drive-page h3 {
    margin: 0 0 8px;
    color: var(--dd-heading);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

.aeson-dropped-drive-page .aeson-eyebrow,
.aeson-dropped-drive-page .aeson-section-label,
.aeson-dropped-drive-page .aeson-card-label {
    margin: 0 0 9px !important;
    color: var(--dd-blue) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: .9px !important;
    text-transform: uppercase !important;
}


/* ==========================================================
   IMPACT EVENT HERO REPLACEMENT
   ========================================================== */

.aeson-dropped-drive-page .aeson-impact-hero {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 176px;
    margin: 0 0 34px;
    padding: 28px 34px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            115deg,
            #202a31 0%,
            #26343e 58%,
            #2c4450 100%
        );
    border-top: 4px solid var(--dd-blue);
    border-radius: 5px;
    box-shadow: 0 10px 28px rgba(18, 34, 44, .13);
}

.aeson-dropped-drive-page .aeson-impact-hero::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -75px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 50%;
}

.aeson-dropped-drive-page .aeson-impact-hero::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 23px;
    width: 235px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(38,147,186,.9),
            transparent
        );
    animation: aeson-impact-scan 3.8s ease-in-out infinite;
}

.aeson-dropped-drive-page .aeson-impact-hero__signal {
    position: relative;
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
}

.aeson-dropped-drive-page .aeson-impact-hero__core {
    position: absolute;
    z-index: 4;
    top: 21px;
    left: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #ffffff;
    background: var(--dd-red);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(207,47,51,.10);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    animation: aeson-impact-core 5.8s ease-in-out infinite;
}

.aeson-dropped-drive-page .aeson-impact-hero__ring {
    position: absolute;
    top: 46px;
    left: 46px;
    width: 1px;
    height: 1px;
    border: 1px solid rgba(226,72,77,.72);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: aeson-impact-ring 2.8s ease-out infinite;
}

.aeson-dropped-drive-page .aeson-impact-hero__ring--2 {
    animation-delay: .75s;
}

.aeson-dropped-drive-page .aeson-impact-hero__ring--3 {
    animation-delay: 1.5s;
}

.aeson-dropped-drive-page .aeson-impact-hero__copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.aeson-dropped-drive-page .aeson-impact-hero__kicker {
    display: block;
    margin-bottom: 3px;
    color: #72bfd8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.aeson-dropped-drive-page .aeson-impact-hero__title {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 2.2px;
}

.aeson-dropped-drive-page .aeson-impact-hero__sub {
    display: block;
    max-width: 670px;
    color: rgba(255,255,255,.69);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
}

.aeson-dropped-drive-page .aeson-impact-hero__trace {
    display: none;
}

@keyframes aeson-impact-ring {
    0% {
        width: 1px;
        height: 1px;
        opacity: .82;
    }
    100% {
        width: 92px;
        height: 92px;
        opacity: 0;
    }
}

@keyframes aeson-impact-core {
    0%, 82%, 100% {
        transform: translate3d(0,0,0) scale(1);
    }

    84% {
        transform: translate3d(-1px, 1px, 0) scale(1.02);
    }

    86% {
        transform: translate3d(2px, -1px, 0) scale(1.04);
    }

    88% {
        transform: translate3d(-2px, 1px, 0) scale(1.03);
    }

    90% {
        transform: translate3d(2px, 0, 0) scale(1.04);
    }

    92% {
        transform: translate3d(-1px, -1px, 0) scale(1.02);
    }

    94% {
        transform: translate3d(1px, 1px, 0) scale(1.01);
    }

    96% {
        transform: translate3d(0,0,0) scale(1);
    }
}

@keyframes aeson-impact-scan {
    0%, 100% {
        transform: translateX(22px);
        opacity: .2;
    }
    50% {
        transform: translateX(-14px);
        opacity: .75;
    }
}


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

.aeson-dropped-drive-page .aeson-page-intro {
    margin: 0 0 38px;
    padding: 0 0 28px;
    border-bottom: 1px solid var(--dd-line);
}

.aeson-dropped-drive-page .aeson-page-intro > p:last-child {
    max-width: 820px;
    margin-bottom: 0;
    color: #596771;
}


/* ==========================================================
   ADVISORY PANEL
   ========================================================== */

.aeson-dropped-drive-page .aeson-advisory-panel {
    margin: 0 0 48px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--dd-line);
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(35, 52, 65, .055);
}

.aeson-dropped-drive-page .aeson-advisory-panel__top {
    padding: 27px 28px 24px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fcf8f8 100%
        );
    border-top: 4px solid var(--dd-red);
}

.aeson-dropped-drive-page .aeson-advisory-tag {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    margin: 0 0 13px;
    padding: 5px 10px;
    color: #ffffff;
    background: var(--dd-red);
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.aeson-dropped-drive-page .aeson-advisory-panel__top h2 {
    margin-bottom: 10px;
    font-size: 27px;
}

.aeson-dropped-drive-page .aeson-advisory-panel__top p {
    max-width: 800px;
    margin-bottom: 0;
}

.aeson-dropped-drive-page .aeson-advisory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--dd-line-soft);
}

.aeson-dropped-drive-page .aeson-advisory-item {
    position: relative;
    min-height: 137px;
    padding: 22px 24px 21px 49px;
    background: #ffffff;
    border-right: 1px solid var(--dd-line-soft);
    border-bottom: 1px solid var(--dd-line-soft);
}

.aeson-dropped-drive-page .aeson-advisory-item:nth-child(2n) {
    border-right: 0;
}

.aeson-dropped-drive-page .aeson-advisory-item:nth-last-child(-n+2) {
    border-bottom: 0;
}

.aeson-dropped-drive-page .aeson-advisory-item::before {
    content: "";
    position: absolute;
    top: 29px;
    left: 24px;
    width: 11px;
    height: 11px;
    background: var(--dd-red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(207,47,51,.09);
}

.aeson-dropped-drive-page .aeson-advisory-item h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.aeson-dropped-drive-page .aeson-advisory-item p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.62;
}


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

.aeson-dropped-drive-page .aeson-content-section,
.aeson-dropped-drive-page .aeson-faq-section {
    margin: 0 0 50px;
}

.aeson-dropped-drive-page .aeson-content-section > p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   POWERED OFF / POWERED ON
   ========================================================== */

.aeson-dropped-drive-page .aeson-two-column-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 23px;
}

.aeson-dropped-drive-page .aeson-two-column-card {
    padding: 24px 23px 22px;
    background: #ffffff;
    border: 1px solid var(--dd-line);
    border-radius: 4px;
    box-shadow: 0 5px 16px rgba(34,52,64,.045);
}

.aeson-dropped-drive-page .aeson-two-column-card--blue {
    border-top: 4px solid var(--dd-blue);
}

.aeson-dropped-drive-page .aeson-two-column-card--red {
    border-top: 4px solid var(--dd-red);
}

.aeson-dropped-drive-page .aeson-two-column-card--red .aeson-card-label {
    color: var(--dd-red) !important;
}

.aeson-dropped-drive-page .aeson-two-column-card p:last-child {
    margin-bottom: 0;
    font-size: 17px;
}


/* ==========================================================
   TECHNICAL CALLOUTS
   ========================================================== */

.aeson-dropped-drive-page .aeson-tech-callout {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 22px;
    margin: 0 0 50px;
    padding: 26px 28px;
    background: #f6f9fa;
    border: 1px solid var(--dd-line);
    border-left: 4px solid var(--dd-blue);
    border-radius: 4px;
}

.aeson-dropped-drive-page .aeson-tech-callout--danger {
    background: #fbf7f7;
    border-left-color: var(--dd-red);
}

.aeson-dropped-drive-page .aeson-tech-callout__marker {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #c6d3d9;
    font-size: 38px;
    font-weight: 300;
    line-height: 1;
}

.aeson-dropped-drive-page .aeson-tech-callout--danger .aeson-tech-callout__marker {
    color: #e1c1c2;
}

.aeson-dropped-drive-page .aeson-tech-callout__body p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   INTERNAL MECHANISM GRID
   ========================================================== */

.aeson-dropped-drive-page .aeson-mechanism-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 23px;
}

.aeson-dropped-drive-page .aeson-mechanism-card {
    position: relative;
    min-height: 176px;
    padding: 23px 22px 20px 60px;
    background: #ffffff;
    border: 1px solid var(--dd-line);
    border-radius: 4px;
}

.aeson-dropped-drive-page .aeson-mechanism-card__index {
    position: absolute;
    top: 24px;
    left: 20px;
    color: #9cb4bf;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
}

.aeson-dropped-drive-page .aeson-mechanism-card h3 {
    color: var(--dd-blue-deep);
}

.aeson-dropped-drive-page .aeson-mechanism-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================================
   IMAGE + TEXT SECTIONS
   Style based on the user's preferred NAND/eMMC layout.
   ========================================================== */

.aeson-dropped-drive-page .aeson-image-text-section {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(280px, .84fr);
    gap: 24px;
    margin: 0 0 52px;
    align-items: stretch;
}

.aeson-dropped-drive-page .aeson-image-text-section--media-left {
    grid-template-columns: minmax(280px, .84fr) minmax(0, 1.16fr);
}

.aeson-dropped-drive-page .aeson-image-text-section__content {
    padding: 28px 29px 27px;
    background: #ffffff;
    border: 1px solid var(--dd-line);
    border-top: 4px solid var(--dd-blue-deep);
    border-radius: 4px;
}

.aeson-dropped-drive-page .aeson-image-text-section__content p:last-child {
    margin-bottom: 0;
}

.aeson-dropped-drive-page .aeson-image-text-section__figure {
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    background: #f6f8f9;
    border: 1px solid var(--dd-line);
    border-radius: 4px;
    box-shadow: 0 7px 20px rgba(34,52,64,.055);
}

.aeson-dropped-drive-page .aeson-image-text-section__figure img,
.aeson-dropped-drive-page .aeson-image-placeholder {
    display: block;
    width: 100%;
    flex: 1 1 auto;
}

.aeson-dropped-drive-page .aeson-image-text-section__figure img {
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.aeson-dropped-drive-page .aeson-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    padding: 25px;
    background:
        linear-gradient(
            135deg,
            #e9edef 0%,
            #dfe5e8 100%
        );
    color: #75858d;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}

.aeson-dropped-drive-page .aeson-image-text-section__figure figcaption {
    margin: 0;
    padding: 12px 15px 13px;
    color: #6f7c84;
    background:
        linear-gradient(
            180deg,
            #f9fbfb 0%,
            #f1f5f6 100%
        );
    border-top: 1px solid var(--dd-line);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.48;
}


/* ==========================================================
   OTHER FAILURE GRID
   ========================================================== */

.aeson-dropped-drive-page .aeson-failure-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 23px;
}

.aeson-dropped-drive-page .aeson-failure-card {
    padding: 20px 20px 18px;
    background: var(--dd-panel);
    border: 1px solid var(--dd-line);
    border-radius: 3px;
}

.aeson-dropped-drive-page .aeson-failure-card h3 {
    color: var(--dd-blue-deep);
}

.aeson-dropped-drive-page .aeson-failure-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================================
   SYMPTOM LIST
   ========================================================== */

.aeson-dropped-drive-page .aeson-symptom-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 26px;
    margin: 22px 0 18px;
    list-style: none;
    border-top: 1px solid var(--dd-line-soft);
}

.aeson-dropped-drive-page .aeson-symptom-list li {
    position: relative;
    padding: 12px 4px 12px 22px;
    border-bottom: 1px solid var(--dd-line-soft);
    font-size: 16px;
    line-height: 1.5;
}

.aeson-dropped-drive-page .aeson-symptom-list li::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 2px;
    width: 7px;
    height: 7px;
    background: var(--dd-blue);
    border-radius: 50%;
}

.aeson-dropped-drive-page .aeson-section-note {
    margin: 20px 0 0 !important;
    padding: 15px 17px;
    color: #536771 !important;
    background: #f3f7f8;
    border-left: 3px solid var(--dd-blue);
    font-size: 16px !important;
}


/* ==========================================================
   DIAGNOSTIC PROCESS
   ========================================================== */

.aeson-dropped-drive-page .aeson-process-list {
    margin-top: 23px;
    list-style: none;
    border-top: 1px solid var(--dd-line);
}

.aeson-dropped-drive-page .aeson-process-list > li {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 17px;
    padding: 18px 0;
    border-bottom: 1px solid var(--dd-line);
}

.aeson-dropped-drive-page .aeson-process-list__num {
    color: #9bb0ba;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
}

.aeson-dropped-drive-page .aeson-process-list h3 {
    margin-bottom: 5px;
}

.aeson-dropped-drive-page .aeson-process-list p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}

.aeson-dropped-drive-page .aeson-emphasis-line {
    margin: 23px 0 0 !important;
    padding: 18px 20px;
    color: #40545f !important;
    background: #f3f7f8;
    border-left: 4px solid var(--dd-blue-deep);
    font-size: 17px !important;
}


/* ==========================================================
   IMAGING FLOW
   ========================================================== */

.aeson-dropped-drive-page .aeson-imaging-flow {
    display: grid;
    grid-template-columns: minmax(0,1fr) 25px minmax(0,1fr) 25px minmax(0,1fr) 25px minmax(0,1fr);
    align-items: center;
    gap: 8px;
    margin: 24px 0;
}

.aeson-dropped-drive-page .aeson-imaging-flow__stage {
    min-height: 118px;
    padding: 16px 14px 14px;
    background: #ffffff;
    border: 1px solid var(--dd-line);
    border-top: 3px solid var(--dd-blue);
    border-radius: 3px;
}

.aeson-dropped-drive-page .aeson-imaging-flow__stage span {
    display: block;
    margin-bottom: 9px;
    color: #94aab4;
    font-size: 11px;
    font-weight: 700;
}

.aeson-dropped-drive-page .aeson-imaging-flow__stage strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dd-heading);
    font-size: 15px;
    line-height: 1.35;
}

.aeson-dropped-drive-page .aeson-imaging-flow__stage small {
    display: block;
    color: var(--dd-muted);
    font-size: 11px;
    line-height: 1.4;
}

.aeson-dropped-drive-page .aeson-imaging-flow__arrow {
    color: #9ab2bd;
    text-align: center;
    font-size: 19px;
}


/* ==========================================================
   RECOVERY SPECTRUM
   ========================================================== */

.aeson-dropped-drive-page .aeson-recovery-spectrum {
    display: grid;
    gap: 10px;
    margin-top: 23px;
}

.aeson-dropped-drive-page .aeson-recovery-spectrum__item {
    position: relative;
    padding: 18px 20px 17px 112px;
    background: #ffffff;
    border: 1px solid var(--dd-line);
    border-left: 4px solid #6daec3;
}

.aeson-dropped-drive-page .aeson-recovery-spectrum__item > span {
    position: absolute;
    top: 20px;
    left: 18px;
    width: 76px;
    color: #77929e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.aeson-dropped-drive-page .aeson-recovery-spectrum__item h3 {
    margin-bottom: 4px;
}

.aeson-dropped-drive-page .aeson-recovery-spectrum__item p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.55;
}

.aeson-dropped-drive-page .aeson-recovery-spectrum__item--mid {
    border-left-color: #538ba2;
}

.aeson-dropped-drive-page .aeson-recovery-spectrum__item--high {
    border-left-color: #c27b55;
}

.aeson-dropped-drive-page .aeson-recovery-spectrum__item--critical {
    border-left-color: var(--dd-red);
}


/* ==========================================================
   SSD NOTE
   ========================================================== */

.aeson-dropped-drive-page .aeson-ssd-note {
    padding: 24px 25px 22px;
    background: #f6f9fa;
    border: 1px solid var(--dd-line);
    border-top: 3px solid var(--dd-blue);
    border-radius: 4px;
}


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

.aeson-dropped-drive-page .aeson-intake-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    margin-top: 20px;
    border-top: 1px solid var(--dd-line);
}

.aeson-dropped-drive-page .aeson-intake-grid > div {
    position: relative;
    padding: 13px 3px 13px 22px;
    color: #56656e;
    border-bottom: 1px solid var(--dd-line-soft);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.aeson-dropped-drive-page .aeson-intake-grid > div::before {
    content: "?";
    position: absolute;
    top: 14px;
    left: 0;
    color: var(--dd-blue-deep);
    font-size: 13px;
    font-weight: 700;
}


/* ==========================================================
   FAQ
   ========================================================== */

.aeson-dropped-drive-page .aeson-faq-section > h2 {
    margin-bottom: 18px;
}

.aeson-dropped-drive-page .aeson-faq-item {
    margin: 0;
    border-bottom: 1px solid var(--dd-line);
}

.aeson-dropped-drive-page .aeson-faq-item:first-of-type {
    border-top: 1px solid var(--dd-line);
}

.aeson-dropped-drive-page .aeson-faq-item summary {
    position: relative;
    padding: 17px 48px 17px 4px;
    color: var(--dd-heading);
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
}

.aeson-dropped-drive-page .aeson-faq-item summary::-webkit-details-marker {
    display: none;
}

.aeson-dropped-drive-page .aeson-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 28px;
    height: 28px;
    color: var(--dd-blue-deep);
    transform: translateY(-50%);
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    line-height: 27px;
}

.aeson-dropped-drive-page .aeson-faq-item[open] summary::after {
    content: "–";
}

.aeson-dropped-drive-page .aeson-faq-answer {
    padding: 0 46px 18px 4px;
}

.aeson-dropped-drive-page .aeson-faq-answer p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.65;
}


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

.aeson-dropped-drive-page .aeson-cta-box {
    margin: 52px 0 12px;
    padding: 29px 30px 30px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--dd-dark) 0%,
            var(--dd-dark-2) 100%
        );
    border-top: 4px solid var(--dd-blue);
    border-radius: 4px;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.aeson-dropped-drive-page .aeson-cta-box h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 27px;
}

.aeson-dropped-drive-page .aeson-cta-box > p {
    max-width: 730px;
    color: #cbd2d6;
    font-size: 17px;
}

.aeson-dropped-drive-page .aeson-cta-box > p:last-child {
    margin: 20px 0 0;
}

.aeson-dropped-drive-page .aeson-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .35px;
    text-decoration: none !important;
    text-transform: uppercase;
}

.aeson-dropped-drive-page .aeson-btn-primary {
    color: #ffffff !important;
    background: var(--dd-red);
}

.aeson-dropped-drive-page .aeson-btn-primary:hover,
.aeson-dropped-drive-page .aeson-btn-primary:focus {
    color: #ffffff !important;
    background: var(--dd-red-deep);
}


/* ==========================================================
   LINKS
   ========================================================== */

.aeson-dropped-drive-page a:not(.aeson-btn) {
    color: var(--dd-blue-deep);
}

.aeson-dropped-drive-page a:not(.aeson-btn):hover,
.aeson-dropped-drive-page a:not(.aeson-btn):focus {
    color: var(--dd-blue);
}


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

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

    .aeson-dropped-drive-page .aeson-image-text-section,
    .aeson-dropped-drive-page .aeson-image-text-section--media-left {
        grid-template-columns: 1fr;
    }

    .aeson-dropped-drive-page .aeson-image-text-section--media-left .aeson-image-text-section__figure {
        order: 2;
    }

    .aeson-dropped-drive-page .aeson-image-text-section--media-left .aeson-image-text-section__content {
        order: 1;
    }

    .aeson-dropped-drive-page .aeson-image-text-section__figure img,
    .aeson-dropped-drive-page .aeson-image-placeholder {
        min-height: 330px;
    }

    .aeson-dropped-drive-page .aeson-imaging-flow {
        grid-template-columns: 1fr;
    }

    .aeson-dropped-drive-page .aeson-imaging-flow__arrow {
        transform: rotate(90deg);
    }
}


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

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

    .aeson-dropped-drive-page h1 {
        font-size: 31px;
    }

    .aeson-dropped-drive-page h2 {
        font-size: 25px;
    }

    .aeson-dropped-drive-page p,
    .aeson-dropped-drive-page li {
        font-size: 17px;
    }

    .aeson-dropped-drive-page .aeson-impact-hero {
        min-height: 0;
        gap: 18px;
        padding: 24px 19px;
    }

    .aeson-dropped-drive-page .aeson-impact-hero__signal {
        flex-basis: 66px;
        width: 66px;
        height: 66px;
    }

    .aeson-dropped-drive-page .aeson-impact-hero__core {
        top: 13px;
        left: 13px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .aeson-dropped-drive-page .aeson-impact-hero__ring {
        top: 33px;
        left: 33px;
    }

    .aeson-dropped-drive-page .aeson-impact-hero__title {
        font-size: 31px;
        letter-spacing: 1px;
    }

    .aeson-dropped-drive-page .aeson-impact-hero__sub {
        font-size: 13px;
    }

    .aeson-dropped-drive-page .aeson-page-intro {
        margin-bottom: 30px;
    }

    .aeson-dropped-drive-page .aeson-advisory-grid,
    .aeson-dropped-drive-page .aeson-two-column-section,
    .aeson-dropped-drive-page .aeson-mechanism-grid,
    .aeson-dropped-drive-page .aeson-failure-grid,
    .aeson-dropped-drive-page .aeson-symptom-list,
    .aeson-dropped-drive-page .aeson-intake-grid {
        grid-template-columns: 1fr;
    }

    .aeson-dropped-drive-page .aeson-advisory-item {
        min-height: 0;
        border-right: 0;
    }

    .aeson-dropped-drive-page .aeson-advisory-item:nth-last-child(2) {
        border-bottom: 1px solid var(--dd-line-soft);
    }

    .aeson-dropped-drive-page .aeson-tech-callout {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 18px;
    }

    .aeson-dropped-drive-page .aeson-tech-callout__marker {
        justify-content: flex-start;
        font-size: 26px;
    }

    .aeson-dropped-drive-page .aeson-image-text-section__content {
        padding: 22px 19px 21px;
    }

    .aeson-dropped-drive-page .aeson-image-text-section__figure img,
    .aeson-dropped-drive-page .aeson-image-placeholder {
        min-height: 240px;
    }

    .aeson-dropped-drive-page .aeson-recovery-spectrum__item {
        padding: 55px 18px 17px;
    }

    .aeson-dropped-drive-page .aeson-recovery-spectrum__item > span {
        top: 18px;
        left: 18px;
        width: auto;
    }

    .aeson-dropped-drive-page .aeson-process-list > li {
        grid-template-columns: 42px minmax(0,1fr);
    }

    .aeson-dropped-drive-page .aeson-cta-box {
        padding: 25px 20px 26px;
    }

    .aeson-dropped-drive-page .aeson-btn {
        width: 100%;
    }
}


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

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

    .aeson-dropped-drive-page h1 {
        font-size: 28px;
    }

    .aeson-dropped-drive-page .aeson-impact-hero {
        align-items: flex-start;
    }

    .aeson-dropped-drive-page .aeson-impact-hero__trace {
        display: none;
    }
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .aeson-dropped-drive-page .aeson-impact-hero__core,
    .aeson-dropped-drive-page .aeson-impact-hero__ring,
    .aeson-dropped-drive-page .aeson-impact-hero::after {
        animation: none !important;
    }
}

/* ==========================================================
   POWERED OFF / POWERED ON ICONS
   ========================================================== */

.aeson-dropped-drive-page .aeson-two-column-card {
    position: relative;
    overflow: hidden;
}

.aeson-dropped-drive-page .aeson-two-column-card::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 56px 56px;
    opacity: 0.98;
    pointer-events: none;
}

.aeson-dropped-drive-page .aeson-two-column-card h3 {
    padding-right: 86px;
}

.aeson-dropped-drive-page .aeson-two-column-card--blue::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='30' fill='%23f4f9fc' stroke='%23d7e7ee' stroke-width='2'/%3E%3Cpath d='M24 17v14m16-14v14m-20 0h24v8c0 3.3-2.7 6-6 6H26c-3.3 0-6-2.7-6-6v-8Z' fill='none' stroke='%23278dbb' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 46 46 18' fill='none' stroke='%23278dbb' stroke-width='4.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.aeson-dropped-drive-page .aeson-two-column-card--red::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='30' fill='%23fcf6f6' stroke='%23f0d6d7' stroke-width='2'/%3E%3Cpath d='M35 8 20 35h10l-3 21 18-30H34l1-18Z' fill='%23d73232'/%3E%3C/svg%3E");
}

.aeson-dropped-drive-page .aeson-two-column-card--blue .aeson-card-label,
.aeson-dropped-drive-page .aeson-two-column-card--red .aeson-card-label {
    padding-right: 86px;
}

@media (max-width: 767px) {
    .aeson-dropped-drive-page .aeson-two-column-card::before {
        top: 18px;
        right: 18px;
        width: 48px;
        height: 48px;
        background-size: 48px 48px;
    }

    .aeson-dropped-drive-page .aeson-two-column-card h3,
    .aeson-dropped-drive-page .aeson-two-column-card--blue .aeson-card-label,
    .aeson-dropped-drive-page .aeson-two-column-card--red .aeson-card-label {
        padding-right: 72px;
    }
}
