/* =========================================================
   Amazon POD landing page
   ========================================================= */
.amazon-pod-page {
    --pod-ink: #263747;
    --pod-muted: #617181;
    --pod-blue: #1769aa;
    --pod-blue-dark: #114c7d;
    --pod-blue-soft: #edf6fc;
    --pod-green: #26835b;
    --pod-green-soft: #eaf6ef;
    --pod-orange: #e66b22;
    --pod-orange-soft: #fff3e8;
    --pod-yellow-soft: #fff8df;
    --pod-border: #dfe7ed;
    --pod-surface: #f6f8fa;
    padding: 26px 18px 64px;
    background: linear-gradient(180deg, #f6f9fc 0, #fff 360px);
    color: var(--pod-ink);
    font-size: 16px;
    line-height: 1.8;
}

.amazon-pod-page,
.amazon-pod-page *,
.amazon-pod-page *::before,
.amazon-pod-page *::after {
    box-sizing: border-box;
}

.amazon-pod-page__container {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.amazon-pod-page a {
    color: var(--pod-blue);
}

.amazon-pod-page img {
    max-width: 100%;
    height: auto;
}

.amazon-pod-section {
    margin: 0 0 58px;
}

.amazon-pod-section--compact {
    margin-bottom: 42px;
}

.amazon-pod-section-heading {
    margin: 0 0 28px;
    text-align: center;
}

.amazon-pod-section-heading--left {
    text-align: left;
}

.amazon-pod-section-heading__eyebrow {
    margin: 0 0 5px;
    color: var(--pod-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.amazon-pod-section-heading h2 {
    margin: 0;
    color: #223b51;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.45;
}

/* Hero */
.amazon-pod-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    min-height: 420px;
    margin-bottom: 22px;
    padding: 30px 38px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #f1f8fd 0%, #fff 72%);
    box-shadow: 0 12px 32px rgba(26, 66, 99, .08);
}

.amazon-pod-hero__copy {
    flex: 1 1 450px;
    min-width: 0;
}

.amazon-pod-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--pod-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
}

.amazon-pod-hero__eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--pod-blue);
}

#amazon-pod-title {
    margin: 0;
    color: #1f3a52;
    font-size: clamp(34px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .01em;
}

.amazon-pod-hero__lead {
    margin: 18px 0 8px;
    color: var(--pod-ink);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.5;
}

.amazon-pod-hero__sub {
    margin: 0;
    color: var(--pod-muted);
    font-size: 15px;
    line-height: 1.85;
}

.amazon-pod-hero__actions,
.amazon-pod-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.amazon-pod-hero__visual {
    display: flex;
    flex: 0 0 500px;
    align-items: stretch;
    width: 500px;
    aspect-ratio: 3 / 2;
    padding: 10px;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(30, 70, 100, .13);
}

.amazon-pod-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border-radius: 11px;
    object-fit: contain;
    object-position: center;
}

/* Buttons */
.amazon-pod-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 48px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none !important;
    transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.amazon-pod-button--primary {
    background: var(--pod-blue);
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(23, 105, 170, .20);
}

.amazon-pod-button--primary:hover,
.amazon-pod-button--primary:focus {
    background: var(--pod-blue-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(23, 105, 170, .26);
}

.amazon-pod-button--secondary {
    border-color: #b9cbd8;
    background: #fff;
    color: #395e78 !important;
}

.amazon-pod-button--secondary:hover,
.amazon-pod-button--secondary:focus {
    border-color: var(--pod-blue);
    background: var(--pod-blue-soft);
    color: var(--pod-blue-dark) !important;
    transform: translateY(-1px);
}

/* Price */
.amazon-pod-price {
    margin: 0 0 58px;
    padding: 24px 30px 18px;
    border-radius: 16px;
    background: linear-gradient(110deg, #fff4d8 0%, #fffaf0 55%, #fff 100%);
    box-shadow: 0 10px 25px rgba(112, 78, 15, .08);
}

.amazon-pod-price__main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.amazon-pod-price__label {
    margin: 0;
    color: #69460b;
    font-size: 22px;
    font-weight: 800;
}

.amazon-pod-price__amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0;
    white-space: nowrap;
}

.amazon-pod-price__amount strong {
    color: var(--pod-orange);
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
}

.amazon-pod-price__amount small {
    color: #665c50;
    font-size: 13px;
}

.amazon-pod-price__notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    margin-top: 28px;
    color: #5d513e;
    font-size: 15px;
    font-weight: 700;
}

.amazon-pod-price__notes i {
    margin-right: 4px;
    color: var(--pod-green);
}

/* About */
.amazon-pod-about__intro {
    width: min(920px, 100%);
    margin: -2px auto 26px;
    color: #405465;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

.amazon-pod-about__flow-figure {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: transparent;
}

.amazon-pod-about__flow-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(31, 67, 94, .10);
}

.amazon-pod-about__points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.amazon-pod-about__point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    padding: 20px;
    border: 1px solid #dcece3;
    border-radius: 14px;
    background: var(--pod-green-soft);
}

.amazon-pod-about__point > i {
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--pod-green);
    color: #fff;
    font-size: 17px;
}

.amazon-pod-about__point h3 {
    margin: 0 0 6px;
    color: #285842;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.55;
}

.amazon-pod-about__point p {
    margin: 0;
    color: #4f675b;
    font-size: 12px;
    line-height: 1.75;
}

.amazon-pod-about__result-link {
    margin: 20px 0 0;
    font-size: 13px;
    text-align: center;
}

.amazon-pod-notice {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 20px;
    padding: 16px 20px;
    border-left: 4px solid var(--pod-blue);
    border-radius: 0 10px 10px 0;
    background: var(--pod-blue-soft);
    color: #3f5669;
    font-size: 13px;
}

.amazon-pod-notice i {
    margin-top: 5px;
    color: var(--pod-blue);
}

.amazon-pod-notice p {
    margin: 0;
}

/* Benefits */
.amazon-pod-benefits {
    padding: 38px 36px 42px;
    border-radius: 20px;
    background: var(--pod-surface);
}

.amazon-pod-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.amazon-pod-benefit-card {
    padding: 25px 22px;
    border: 1px solid #e8edf1;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(36, 67, 92, .05);
    text-align: left;
}

.amazon-pod-benefit-card__icon,
.amazon-pod-spec-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
    border-radius: 13px;
    background: var(--pod-blue-soft);
    color: var(--pod-blue);
    font-size: 20px;
}

.amazon-pod-benefit-card h3 {
    margin: 0 0 10px;
    color: #2d4355;
    font-size: 18px;
    font-weight: 800;
}

.amazon-pod-benefit-card p {
    margin: 0;
    color: #5a6a78;
    font-size: 13px;
    line-height: 1.85;
}

/* Overseas Amazon */
.amazon-pod-global-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 26px 30px;
    border-radius: 17px;
    background: linear-gradient(120deg, #eef7fd 0%, #fff 92%);
}

.amazon-pod-global-note__icon {
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin-top: 2px;
    border-radius: 15px;
    background: #fff;
    color: var(--pod-blue);
    font-size: 23px;
    box-shadow: 0 6px 16px rgba(36, 67, 92, .07);
}

.amazon-pod-global-note__body {
    min-width: 0;
}

.amazon-pod-global-note h2 {
    margin: 0 0 10px;
    color: #2a4052;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.45;
    white-space: nowrap;
}

.amazon-pod-global-note__details {
    color: #526575;
    font-size: 13px;
    line-height: 1.8;
}

.amazon-pod-global-note__details p {
    margin: 0 0 5px;
}

.amazon-pod-global-note__details strong {
    display: block;
    margin-top: 10px;
    color: var(--pod-orange);
    font-size: 20px;
}

.amazon-pod-global-note__details small {
    display: block;
    margin-top: 5px;
    color: #71808d;
    font-size: 11px;
}

/* Application */
.amazon-pod-apply .amazon-pod-section-heading {
    margin-bottom: 18px;
}

.amazon-pod-apply__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.amazon-pod-apply-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 20px 22px;
    border-radius: 15px;
    background: #f7f9fb;
    text-align: left;
}

.amazon-pod-apply-card--form {
    background: #eef7fd;
    border: 1px solid #d4e9f7;
}

.amazon-pod-apply-card__number {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: #d9e9f5;
    color: var(--pod-blue-dark);
    font-size: 14px;
    font-weight: 900;
}

.amazon-pod-apply-card h3 {
    margin: 0 0 7px;
    color: #2e4456;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
}

.amazon-pod-apply-card p {
    margin: 0 0 14px;
    color: #586a79;
    font-size: 13px;
    line-height: 1.7;
}

.amazon-pod-apply-card .amazon-pod-button {
    align-self: flex-start;
    min-height: 42px;
    margin-top: auto;
    padding: 8px 16px;
}

/* Flow */
.amazon-pod-flow {
    padding: 34px 30px 38px;
    border-radius: 20px;
    background: var(--pod-surface);
}

.amazon-pod-flow__list {
    counter-reset: pod-step;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.amazon-pod-flow-step {
    --pod-flow-accent: var(--pod-blue);
    counter-increment: pod-step;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 165px;
    padding: 24px 18px;
    border: 1px solid #e2e9ee;
    border-radius: 16px;
    background: #fff;
    color: #30485b;
    box-shadow: 0 8px 22px rgba(36, 67, 92, .06);
    text-align: center;
}

.amazon-pod-flow-step:nth-child(2) {
    --pod-flow-accent: var(--pod-green);
}

.amazon-pod-flow-step:nth-child(3) {
    --pod-flow-accent: #6f5cc2;
}

.amazon-pod-flow-step:nth-child(4) {
    --pod-flow-accent: #e79722;
}

.amazon-pod-flow-step::before {
    content: counter(pod-step);
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--pod-flow-accent);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 7px 16px color-mix(in srgb, var(--pod-flow-accent) 24%, transparent);
}

.amazon-pod-flow-step:not(:last-child)::after {
    content: "\f061";
    position: absolute;
    top: 50%;
    right: -32px;
    z-index: 2;
    color: #9cb1c0;
    font-family: "Font Awesome 5 Free";
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
}

.amazon-pod-flow-step h3 {
    min-height: 52px;
    margin: 0;
    color: #263f53;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.55;
}

/* Sales */
.amazon-pod-sales__summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.amazon-pod-sales-card {
    padding: 25px 28px;
    border-radius: 16px;
    background: #f4f7f9;
    text-align: center;
}

.amazon-pod-sales-card--royalty {
    background: var(--pod-orange-soft);
}

.amazon-pod-sales-card span {
    display: block;
    margin-bottom: 5px;
    color: #6b7781;
    font-size: 15px;
    font-weight: 700;
}

.amazon-pod-sales-card strong {
    display: block;
    color: #2d4355;
    font-size: 27px;
    font-weight: 900;
}

.amazon-pod-sales-card--royalty strong {
    color: var(--pod-orange);
}

.amazon-pod-sales-card p {
    margin: 9px 0 0;
    color: #667681;
    font-size: 12px;
}

.amazon-pod-payment-schedule {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.amazon-pod-payment-schedule div {
    padding: 15px 10px;
    border: 1px solid var(--pod-border);
    border-radius: 11px;
    background: #fff;
    text-align: center;
}

.amazon-pod-payment-schedule strong,
.amazon-pod-payment-schedule span {
    display: block;
}

.amazon-pod-payment-schedule strong {
    color: var(--pod-blue-dark);
    font-size: 17px;
}

.amazon-pod-payment-schedule span {
    color: #6b7b88;
    font-size: 13px;
}

.amazon-pod-payment-note {
    margin: 14px 0 0;
    color: #687783;
    font-size: 12px;
    text-align: center;
}

/* Specification */
.amazon-pod-spec {
    padding: 26px 30px 28px;
    border-radius: 18px;
    background: #f8fafb;
}

.amazon-pod-spec .amazon-pod-section-heading {
    margin-bottom: 18px;
}

.amazon-pod-spec__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.amazon-pod-spec-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    row-gap: 3px;
    align-items: center;
    min-height: 0;
    padding: 22px 18px;
    border: 1px solid var(--pod-border);
    border-radius: 14px;
    background: #fff;
}

.amazon-pod-spec-card--support {
    border-color: #f0d8bc;
    background: #fffaf4;
}

.amazon-pod-spec-card .amazon-pod-spec-card__icon {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 12px;
    font-size: 18px;
}

.amazon-pod-spec-card--support .amazon-pod-spec-card__icon {
    background: var(--pod-orange-soft);
    color: var(--pod-orange);
}

.amazon-pod-spec-card h3 {
    grid-column: 2;
    margin: 0 0 10px 0;
    color: #2e4456;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.5;
}

.amazon-pod-spec-card p {
    grid-column: 2;
    margin: 0;
    color: #596b79;
    font-size: 12px;
    line-height: 1.65;
}

.amazon-pod-spec-card__price {
    color: var(--pod-orange) !important;
    font-size: 16px !important;
    font-weight: 900;
}

.amazon-pod-spec-card .amazon-pod-button {
    grid-column: 3;
    grid-row: 1 / 4;
    align-self: center;
    min-height: 42px;
    margin: 0;
    padding: 8px 14px;
    white-space: nowrap;
}

/* Publisher */
.amazon-pod-publisher {
    padding: 16px 20px 18px;
    border-radius: 16px;
    background: #f4f8fb;
}

.amazon-pod-publisher__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
    gap: 24px;
    align-items: start;
}

.amazon-pod-publisher__copy {
    min-width: 0;
    padding-top: 2px;
}

.amazon-pod-publisher .amazon-pod-section-heading {
    margin-bottom: 18px;
}

.amazon-pod-publisher .amazon-pod-section-heading h2 {
    font-size: 24px;
}

.amazon-pod-publisher__intro {
    color: #465b6d;
    font-size: 13px;
    line-height: 1.65;
}

.amazon-pod-publisher__intro p {
    margin: 0 0 5px;
}

.amazon-pod-publisher__intro p:last-child {
    margin-bottom: 0;
}

.amazon-pod-publisher__samples {
    min-width: 0;
}

.amazon-pod-publisher__figure {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 8px 10px 9px;
    border: 1px solid var(--pod-border);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(36, 67, 92, .04);
    text-align: center;
}

.amazon-pod-publisher__figure figcaption {
    margin-bottom: 3px;
    color: #334d61;
    font-size: 12px;
    font-weight: 800;
}

.amazon-pod-publisher__image-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    padding: 4px 7px;
    border-radius: 8px;
    background: #fbfcfd;
}

.amazon-pod-publisher__figure img {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.amazon-pod-publisher__figure--barcode img {
    width: min(100%, 360px);
    max-height: 116px;
}

/* FAQ */
.amazon-pod-faq__list {
    width: min(900px, 100%);
    margin: 0 auto;
}

.amazon-pod-faq details {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--pod-border);
    border-radius: 11px;
    background: #fff;
}

.amazon-pod-faq summary {
    position: relative;
    padding: 16px 50px 16px 20px;
    color: #2f495e;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.amazon-pod-faq summary::-webkit-details-marker {
    display: none;
}

.amazon-pod-faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 19px;
    color: var(--pod-blue);
    font-size: 23px;
    font-weight: 400;
    transform: translateY(-50%);
}

.amazon-pod-faq details[open] summary::after {
    content: "−";
}

.amazon-pod-faq details > div {
    padding: 0 20px 18px;
    color: #536878;
    font-size: 14px;
    line-height: 1.9;
}

/* Cautions */
.amazon-pod-cautions {
    padding: 30px 34px;
    border-radius: 17px;
    background: #f8f9fa;
}

.amazon-pod-cautions ul {
    margin: 0;
    padding-left: 22px;
    color: #526372;
    font-size: 13px;
}

.amazon-pod-cautions li {
    margin-bottom: 10px;
}

.amazon-pod-cautions li:last-child {
    margin-bottom: 0;
}

/* Final CTA */
.amazon-pod-final-cta {
    padding: 38px 30px;
    border-radius: 20px;
    background: linear-gradient(120deg, #eaf4fb 0%, #f8fcff 100%);
    text-align: center;
}

.amazon-pod-final-cta__eyebrow {
    margin: 0 0 5px;
    color: var(--pod-blue);
    font-size: 13px;
    font-weight: 800;
}

.amazon-pod-final-cta h2 {
	margin: 15px 0 40px 0;
    color: #263f53;
    font-size: 25px;
    font-weight: 800;
}

.amazon-pod-final-cta__actions {
    justify-content: center;
}

.amazon-pod-final-cta > p:last-child {
    margin: 15px 0 0;
    color: #667684;
    font-size: 12px;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .amazon-pod-hero {
        flex-direction: column;
        align-items: flex-start;
        min-height: 0;
        padding: 30px;
    }

    .amazon-pod-hero__copy {
        flex: 0 1 auto;
        width: 100%;
    }

    .amazon-pod-hero__visual {
        flex-basis: auto;
        align-self: center;
        width: min(680px, 100%);
        aspect-ratio: 3 / 2;
    }

    .amazon-pod-publisher__content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .amazon-pod-publisher__figure {
        width: min(430px, 100%);
        margin: 0 auto;
    }

    .amazon-pod-spec__grid {
        grid-template-columns: 1fr;
    }

    .amazon-pod-about__points {
        grid-template-columns: 1fr;
    }

    .amazon-pod-benefits__grid {
        grid-template-columns: 1fr;
    }

    .amazon-pod-flow__list {
        grid-template-columns: 1fr;
        gap: 38px;
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .amazon-pod-flow-step {
        min-height: 0;
    }

    .amazon-pod-flow-step:not(:last-child)::after {
        content: "\f063";
        top: auto;
        right: 50%;
        bottom: -29px;
        transform: translateX(50%);
    }
}

@media screen and (max-width: 600px) {
    .amazon-pod-page {
        padding: 14px 12px 46px;
        font-size: 15px;
    }

    .amazon-pod-section {
        margin-bottom: 44px;
    }

    .amazon-pod-section-heading h2 {
        font-size: 23px;
    }

    .amazon-pod-hero {
        gap: 20px;
        padding: 24px 19px;
        border-radius: 16px;
    }

    #amazon-pod-title {
        font-size: 31px;
    }

    .amazon-pod-pc-break {
        display: none;
    }

    .amazon-pod-hero__lead {
        font-size: 20px;
    }

    .amazon-pod-hero__sub br {
        display: none;
    }

    .amazon-pod-hero__visual {
        width: 100%;
        aspect-ratio: 3 / 2;
        padding: 8px;
    }

    .amazon-pod-hero__actions,
    .amazon-pod-final-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .amazon-pod-button {
        width: 100%;
    }

    .amazon-pod-price {
        padding: 21px 18px 16px;
    }

    .amazon-pod-price__main {
        display: block;
        text-align: center;
    }

    .amazon-pod-price__amount {
        justify-content: center;
        margin-top: 8px;
    }

    .amazon-pod-price__amount strong {
        font-size: 42px;
    }

    .amazon-pod-price__notes {
        display: grid;
        justify-content: start;
        width: max-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .amazon-pod-about__intro {
        font-size: 15px;
        line-height: 1.9;
    }

    .amazon-pod-about__flow-figure {
        padding: 5px;
        border-radius: 13px;
    }

    .amazon-pod-about__flow-figure img {
        border-radius: 9px;
    }

    .amazon-pod-about__point {
        padding: 17px;
    }

    .amazon-pod-benefits,
    .amazon-pod-flow,
    .amazon-pod-cautions,
    .amazon-pod-final-cta {
        padding: 25px 18px;
        border-radius: 15px;
    }

    .amazon-pod-spec,
    .amazon-pod-publisher {
        padding: 22px 16px;
        border-radius: 15px;
    }

    .amazon-pod-global-note {
        display: block;
        padding: 22px 18px;
    }

    .amazon-pod-global-note__icon {
        width: 44px;
        height: 44px;
        margin: 0 0 13px;
        font-size: 20px;
    }

    .amazon-pod-global-note h2 {
        margin-bottom: 9px;
        font-size: 19px;
        white-space: normal;
    }

    .amazon-pod-global-note__details strong {
        font-size: 15px;
    }

    .amazon-pod-apply__grid,
    .amazon-pod-sales__summary {
        grid-template-columns: 1fr;
    }

    .amazon-pod-apply-card {
        padding: 18px;
    }

    .amazon-pod-apply-card .amazon-pod-button {
        align-self: stretch;
    }

    .amazon-pod-spec-card {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 15px;
    }

    .amazon-pod-spec-card .amazon-pod-spec-card__icon {
        grid-column: 1;
        grid-row: 1 / 4;
        width: 38px;
        height: 38px;
    }

    .amazon-pod-spec-card h3,
    .amazon-pod-spec-card p {
        grid-column: 2;
    }

    .amazon-pod-spec-card .amazon-pod-button {
        grid-column: 1 / -1;
        grid-row: auto;
        width: 100%;
        margin-top: 8px;
    }

    .amazon-pod-flow__list {
        gap: 36px;
    }

    .amazon-pod-flow-step {
        padding: 21px 16px 17px;
    }

    .amazon-pod-flow-step::before {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .amazon-pod-flow-step h3 {
        min-height: 0;
        font-size: 16px;
    }


    .amazon-pod-payment-schedule {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .amazon-pod-publisher {
        padding: 17px 15px;
    }

    .amazon-pod-publisher__content {
        gap: 14px;
    }

    .amazon-pod-publisher .amazon-pod-section-heading {
        margin-bottom: 12px;
    }

    .amazon-pod-publisher .amazon-pod-section-heading h2 {
        font-size: 21px;
    }

    .amazon-pod-publisher__intro {
        font-size: 13px;
        line-height: 1.65;
    }

    .amazon-pod-publisher__image-frame {
        min-height: 112px;
        padding: 4px;
    }

    .amazon-pod-publisher__figure--barcode img {
        width: min(100%, 315px);
        max-height: 108px;
    }

    .amazon-pod-final-cta h2 {
        font-size: 21px;
    }

}
