.pcm-page {
    scroll-behavior: smooth;
}

html:has(.pcm-page) {
    scroll-behavior: smooth;
}

.pcm-page {
    --pcm-blue: #188cd8;
    --pcm-blue-dark: #0f6fae;
    --pcm-blue-link: #2089d8;
    --pcm-cyan: #2bc2f3;
    --pcm-red: #f03e38;
    --pcm-red-dark: #dd0505;
    --pcm-ink: #102033;
    --pcm-muted: #52677d;
    --pcm-line: #d8ebf8;
    --pcm-soft: #eff7fc;
    --pcm-blue-soft: #e9f7fd;
    --pcm-red-soft: #fff1f0;
    --pcm-card: #ffffff;
    font-family: 'Montserrat', sans-serif;
    color: var(--pcm-ink);
    background:
        linear-gradient(180deg, #eef8fd 0%, #ffffff 34%, #f6fbff 100%);
}

.pcm-page * {
    box-sizing: border-box;
}

.pcm-page a {
    color: inherit;
    text-decoration: none;
}

.pcm-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.pcm-hero {
    position: relative;
    min-height: 560px;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: end;
    background: var(--pcm-blue-dark);
}

.pcm-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.pcm-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02);
}

.pcm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(16, 32, 51, .92) 0%, rgba(16, 32, 51, .58) 46%, rgba(16, 32, 51, .18) 100%),
        linear-gradient(180deg, rgba(16, 32, 51, .02) 0%, rgba(16, 32, 51, .84) 100%);
    opacity: var(--pcm-hero-overlay, .55);
}

.pcm-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: end;
    padding: 90px 0 42px;
}

.pcm-hero__content {
    color: #fff;
    max-width: 760px;
}

.pcm-backlink {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border: 1px solid rgba(43, 194, 243, .55);
    border-radius: 8px;
    background: rgba(24, 140, 216, .22);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pcm-hero h1 {
    margin: 18px 0 14px;
    max-width: 820px;
    color: #fff;
    font-size: 56px;
    line-height: 1.02;
    font-weight: 800;
    text-shadow: 0 18px 44px rgba(16, 32, 51, .32);
}

.pcm-lead {
    max-width: 760px;
    color: rgba(255, 255, 255, .96);
    font-size: 21px;
    line-height: 1.58;
    font-weight: 600;
    text-shadow: 0 12px 32px rgba(16, 32, 51, .34);
}

.pcm-lead p {
    margin: 0;
}

.pcm-actions,
.pcm-record__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.pcm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.pcm-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.pcm-btn--primary {
    background: linear-gradient(135deg, var(--pcm-red), var(--pcm-red-dark));
    color: #fff;
    box-shadow: 0 14px 28px rgba(240, 62, 56, .26);
}

.pcm-btn--ghost {
    border-color: rgba(24, 140, 216, .28);
    background: #fff;
    color: var(--pcm-blue-link);
}

.pcm-hero .pcm-btn--ghost {
    border-color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .13);
    color: #fff;
}

.pcm-summary {
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(255, 255, 255, .64);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 54px rgba(4, 20, 34, .28);
    backdrop-filter: blur(10px);
}

.pcm-summary__item {
    padding: 20px 24px 20px 26px;
    border-bottom: 1px solid var(--pcm-line);
    position: relative;
}

.pcm-summary__item:last-child {
    border-bottom: 0;
}

.pcm-summary__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--pcm-blue), var(--pcm-cyan));
}

.pcm-summary__item:nth-child(2)::before {
    background: linear-gradient(180deg, var(--pcm-cyan), var(--pcm-blue));
}

.pcm-summary__item:nth-child(3)::before {
    background: var(--pcm-red);
}

.pcm-summary__item span {
    display: block;
    color: #3d5368;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.pcm-summary__item strong {
    display: block;
    margin-top: 8px;
    color: var(--pcm-ink);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.pcm-alert {
    background: #fff7f6;
    border-bottom: 1px solid #ffe1df;
}

.pcm-alert__inner {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    color: #7d2925;
    line-height: 1.6;
}

.pcm-alert strong {
    flex: 0 0 auto;
    padding: 7px 11px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #ffd2cf;
    color: #b82722;
    font-size: 12px;
    text-transform: uppercase;
}

.pcm-anchorbar {
    position: sticky;
    top: 14px;
    z-index: 80;
    display: flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 24px auto 38px;
    padding: 10px;
    border: 1px solid rgba(24, 140, 216, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px) saturate(1.2);
    overflow-x: auto;
    box-shadow: 0 18px 44px rgba(16, 32, 51, .14);
    scrollbar-width: none;
}

.pcm-anchorbar::-webkit-scrollbar {
    display: none;
}

.pcm-anchorbar a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--pcm-muted);
    font-size: 13px;
    font-weight: 800;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.pcm-anchorbar a:hover {
    background: linear-gradient(135deg, var(--pcm-blue-soft), #ffffff);
    color: var(--pcm-ink);
    transform: translateY(-1px);
}

.pcm-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.pcm-content,
.pcm-section,
.pcm-record {
    margin-bottom: 56px;
    scroll-margin-top: 118px;
}

.pcm-layout {
    scroll-margin-top: 118px;
}

.pcm-content {
    min-width: 0;
}

.pcm-section-title {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
}

.pcm-section-title span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pcm-blue), var(--pcm-cyan));
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.pcm-section-title h2 {
    margin: 0;
    color: var(--pcm-ink);
    font-size: 34px;
    line-height: 1.1;
}

.pcm-section-title h2::after {
    content: '';
    display: block;
    width: 74px;
    height: 4px;
    margin-top: 10px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--pcm-blue), var(--pcm-cyan), var(--pcm-red));
}

.pcm-wysiwyg {
    border-left: 3px solid var(--pcm-blue);
    padding-left: 28px;
    color: #2f3f51;
    font-size: 17px;
    line-height: 1.82;
}

.pcm-wysiwyg h2,
.pcm-wysiwyg h3 {
    color: var(--pcm-ink);
    line-height: 1.25;
}

.pcm-wysiwyg strong {
    color: var(--pcm-ink);
}

.pcm-wysiwyg a {
    color: var(--pcm-blue-link);
    font-weight: 700;
}

.pcm-wysiwyg h2 {
    margin: 34px 0 12px;
    font-size: 28px;
    color: var(--pcm-ink);
}

.pcm-wysiwyg h3 {
    margin: 24px 0 10px;
    font-size: 21px;
}

.pcm-wysiwyg p {
    margin: 0 0 18px;
}

.pcm-wysiwyg ul,
.pcm-wysiwyg ol {
    margin: 18px 0;
    padding-left: 24px;
}

.pcm-wysiwyg li {
    margin-bottom: 10px;
}

.pcm-wysiwyg img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--pcm-line);
}

.pcm-wysiwyg p:has(img) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pcm-wysiwyg p:has(img) img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.pcm-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 8px;
    border: 1px solid #ffd2cf;
    background: linear-gradient(135deg, var(--pcm-red-soft), #ffffff);
    color: #9a1713;
    font-weight: 700;
}

.pcm-fact {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 8px;
    border: 1px solid rgba(24, 140, 216, .18);
    background: linear-gradient(135deg, var(--pcm-blue-soft), #ffffff);
    color: var(--pcm-ink);
    font-size: 18px;
    font-weight: 900;
}

.pcm-section-lead {
    max-width: 780px;
    margin: -6px 0 24px;
    color: var(--pcm-muted);
    font-size: 17px;
    line-height: 1.7;
}

.pcm-section-lead p {
    margin: 0 0 10px;
}

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

.pcm-info-card,
.pcm-list-card,
.pcm-doctor-quote,
.pcm-price-card,
.pcm-med-note {
    border-radius: 8px;
    border: 1px solid rgba(24, 140, 216, .16);
    background: linear-gradient(180deg, #fff, #f8fcff);
    box-shadow: 0 16px 32px rgba(24, 140, 216, .08);
}

.pcm-info-card {
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pcm-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(24, 140, 216, .12);
}

.pcm-info-card h3,
.pcm-list-card h3 {
    margin: 0 0 10px;
    color: var(--pcm-ink);
    font-size: 21px;
    line-height: 1.25;
}

.pcm-info-card p,
.pcm-list-card p {
    margin: 0;
    color: var(--pcm-muted);
    line-height: 1.65;
}

.pcm-info-card ul,
.pcm-info-card ol {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--pcm-muted);
    line-height: 1.65;
}

.pcm-steps {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.pcm-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(24, 140, 216, .16);
    background: #fff;
    box-shadow: 0 12px 26px rgba(24, 140, 216, .07);
}

.pcm-step > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pcm-blue), var(--pcm-cyan));
    color: #fff;
    font-weight: 900;
}

.pcm-step h3 {
    margin: 0 0 8px;
    color: var(--pcm-ink);
    font-size: 20px;
}

.pcm-step p {
    margin: 0;
    color: var(--pcm-muted);
    line-height: 1.65;
}

.pcm-plan {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 26px 0;
}

.pcm-plan__item {
    position: relative;
    padding: 20px 18px 18px;
    border-radius: 8px;
    border: 1px solid rgba(24, 140, 216, .16);
    background: #fff;
    color: var(--pcm-ink);
    box-shadow: 0 12px 28px rgba(24, 140, 216, .08);
    overflow: hidden;
}

.pcm-plan__item::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--pcm-blue), var(--pcm-cyan));
}

.pcm-plan__item span {
    display: block;
    color: var(--pcm-blue-link);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.pcm-plan__item strong {
    display: block;
    margin-top: 8px;
    color: var(--pcm-ink);
    font-size: 18px;
    line-height: 1.35;
}

.pcm-plan__note {
    grid-column: 1 / -1;
    padding: 16px 18px;
    border-radius: 8px;
    border: 1px solid rgba(24, 140, 216, .18);
    background: var(--pcm-blue-soft);
    color: var(--pcm-muted);
    line-height: 1.65;
}

.pcm-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.pcm-subtitle {
    margin: 0 0 18px;
    color: var(--pcm-ink);
    font-size: 28px;
    line-height: 1.15;
}

.pcm-list-cards {
    display: grid;
    gap: 16px;
}

.pcm-list-card {
    position: relative;
    padding: 22px 22px 22px 26px;
    overflow: hidden;
}

.pcm-list-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--pcm-blue), var(--pcm-cyan));
}

.pcm-list-card--accent::before {
    background: linear-gradient(180deg, var(--pcm-red), var(--pcm-red-dark));
}

.pcm-warning-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pcm-warning-list div {
    position: relative;
    padding: 17px 18px 17px 22px;
    border-radius: 8px;
    border: 1px solid rgba(240, 62, 56, .16);
    background: #fff;
    color: var(--pcm-ink);
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(240, 62, 56, .06);
}

.pcm-warning-list div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--pcm-red);
    border-radius: 8px 0 0 8px;
}

.pcm-section-lead--warning {
    max-width: 920px;
    padding: 18px 20px;
    border-radius: 8px;
    border: 1px solid #ffe1df;
    background: #fff7f6;
    color: #7d2925;
}

.pcm-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.pcm-doctor-quote,
.pcm-price-card,
.pcm-med-note {
    padding: 24px;
}

.pcm-doctor-quote {
    grid-column: span 2;
    border-top: 4px solid var(--pcm-cyan);
    display: grid;
    gap: 18px;
}

.pcm-doctor-quote__meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.pcm-doctor-quote__meta img {
    flex: 0 0 auto;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pcm-blue-soft);
}

.pcm-doctor-quote__meta span,
.pcm-price-card span {
    display: block;
    margin-bottom: 7px;
    color: var(--pcm-blue-link);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.pcm-doctor-quote__text,
.pcm-price-card p,
.pcm-med-note {
    color: var(--pcm-muted);
    line-height: 1.7;
}

.pcm-doctor-quote__meta strong {
    display: block;
    color: var(--pcm-ink);
    font-size: 19px;
    line-height: 1.25;
}

.pcm-doctor-quote__meta em {
    display: block;
    margin-top: 4px;
    color: var(--pcm-muted);
    font-size: 13px;
    font-style: normal;
    line-height: 1.45;
}

.pcm-doctor-quote__text {
    position: relative;
    padding-left: 22px;
    font-size: 18px;
}

.pcm-doctor-quote__text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--pcm-blue), var(--pcm-cyan));
}

.pcm-price-card {
    border-top: 4px solid var(--pcm-red);
}

.pcm-price-card .pcm-btn {
    margin-top: 16px;
}

.pcm-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pcm-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(24, 140, 216, .16);
    box-shadow: 0 14px 28px rgba(24, 140, 216, .09);
}

.pcm-gallery-caption {
    margin: 14px 0 0;
    color: var(--pcm-muted);
    line-height: 1.6;
}

.pcm-sidecard {
    position: sticky;
    top: 92px;
    padding: 22px;
    border-radius: 8px;
    background: var(--pcm-card);
    border: 1px solid rgba(24, 140, 216, .18);
    box-shadow: 0 18px 42px rgba(24, 140, 216, .12);
    border-top: 4px solid var(--pcm-cyan);
}

.pcm-sidecard h2 {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--pcm-ink);
}

.pcm-sidecard p {
    margin: 0 0 16px;
    color: var(--pcm-muted);
    line-height: 1.55;
}

.pcm-sidecard ul {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.pcm-sidecard li {
    padding: 9px 0;
    border-bottom: 1px solid var(--pcm-line);
    color: var(--pcm-ink);
    font-weight: 800;
}

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

.pcm-doctor {
    display: grid;
    grid-template-rows: 260px 1fr;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(24, 140, 216, .16);
    background: linear-gradient(180deg, #fff, #f8fcff);
    box-shadow: 0 16px 32px rgba(24, 140, 216, .09);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pcm-doctor:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px rgba(24, 140, 216, .16);
}

.pcm-doctor__photo {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--pcm-blue), var(--pcm-cyan));
    color: #fff;
    font-size: 44px;
    font-weight: 900;
    overflow: hidden;
}

.pcm-doctor__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pcm-doctor__body {
    padding: 18px;
    border-top: 4px solid var(--pcm-cyan);
}

.pcm-doctor__body strong {
    display: block;
    color: var(--pcm-ink);
    font-size: 18px;
    line-height: 1.3;
}

.pcm-doctor__body p {
    margin: 10px 0 0;
    color: var(--pcm-muted);
    font-size: 14px;
    line-height: 1.45;
}

.pcm-doctor__body em {
    display: inline-flex;
    margin-top: 14px;
    color: var(--pcm-ink);
    font-style: normal;
    font-weight: 900;
    font-size: 13px;
}

.pcm-videos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pcm-video {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pcm-ink), var(--pcm-blue-dark));
    box-shadow: 0 18px 42px rgba(24, 140, 216, .16);
    border: 2px solid rgba(43, 194, 243, .22);
}

.pcm-video iframe,
.pcm-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pcm-faq {
    display: grid;
    gap: 12px;
}

.pcm-faq__item {
    border: 1px solid rgba(24, 140, 216, .18);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.pcm-faq__item summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--pcm-ink);
    font-weight: 900;
    list-style: none;
}

.pcm-faq__item[open] summary {
    color: var(--pcm-ink);
    background: var(--pcm-blue-soft);
}

.pcm-faq__item summary::-webkit-details-marker {
    display: none;
}

.pcm-faq__item summary::after {
    content: '+';
    float: right;
    color: var(--pcm-red);
    font-size: 22px;
    line-height: 1;
}

.pcm-faq__item[open] summary::after {
    content: '-';
}

.pcm-faq__item div {
    padding: 0 20px 20px;
    color: var(--pcm-muted);
    line-height: 1.7;
}

.pcm-record {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pcm-blue-dark) 0%, var(--pcm-blue) 58%, var(--pcm-cyan) 100%);
    color: #fff;
    overflow: hidden;
}

.pcm-record span {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.pcm-record h2 {
    margin: 8px 0 10px;
    color: #fff;
    font-size: 34px;
    line-height: 1.1;
}

.pcm-record p {
    margin: 0;
    max-width: 650px;
    color: rgba(255, 255, 255, .84);
    line-height: 1.65;
}

.pcm-record .pcm-btn--ghost {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

@media (max-width: 980px) {
    .pcm-hero {
        min-height: auto;
    }

	    .pcm-hero__inner,
	    .pcm-layout,
	    .pcm-record,
	    .pcm-card-grid,
	    .pcm-plan,
	    .pcm-trust-grid {
	        grid-template-columns: 1fr;
	    }

    .pcm-two-col,
    .pcm-warning-list {
        grid-template-columns: 1fr;
    }

	    .pcm-summary,
	    .pcm-sidecard {
	        position: static;
    }

	    .pcm-doctors {
	        grid-template-columns: repeat(2, minmax(0, 1fr));
	    }

    .pcm-doctor-quote {
        grid-column: auto;
    }

    .pcm-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pcm-wysiwyg p:has(img) {
        grid-template-columns: 1fr;
    }

    .pcm-hero h1 {
        font-size: 44px;
    }

    .pcm-section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .pcm-shell {
        width: min(100% - 20px, 1180px);
    }

    .pcm-hero__inner {
        padding: 72px 0 24px;
    }

    .pcm-lead {
        font-size: 17px;
        line-height: 1.55;
    }

    .pcm-hero h1 {
        font-size: 34px;
    }

    .pcm-alert__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .pcm-anchorbar {
        top: 10px;
        width: 100%;
        margin: 16px 0 28px;
        border-radius: 18px;
        justify-content: flex-start;
    }

    .pcm-section-title {
        gap: 12px;
    }

    .pcm-section-title span {
        width: 38px;
        height: 38px;
    }

    .pcm-section-title h2 {
        font-size: 25px;
    }

    .pcm-wysiwyg {
        padding-left: 16px;
        font-size: 15px;
    }

	    .pcm-doctors,
	    .pcm-videos,
	    .pcm-gallery {
	        grid-template-columns: 1fr;
	    }

    .pcm-step {
        grid-template-columns: 1fr;
    }

    .pcm-doctor-quote__meta {
        align-items: flex-start;
    }

    .pcm-doctor-quote__meta img {
        width: 58px;
        height: 58px;
    }

    .pcm-doctor-quote__text {
        font-size: 16px;
    }

    .pcm-wysiwyg p:has(img) img {
        height: auto;
    }

    .pcm-gallery img {
        height: 210px;
    }

    .pcm-doctor {
        grid-template-rows: 240px 1fr;
    }

    .pcm-record {
        padding: 24px 18px;
    }

    .pcm-record h2 {
        font-size: 27px;
    }

    .pcm-actions,
    .pcm-record__actions {
        display: grid;
    }
}
