:root {
    --dcn-ink: #1a2535;
    --dcn-muted: #667085;
    --dcn-surface: #ffffff;
    --dcn-page-bg: #f3f4f4;
    --dcn-border: #dfe6f2;
    --dcn-blue: #4a7dff;
    --dcn-blue-hover: #3468f5;
    --dcn-cyan: #5ec4f5;
    --dcn-panel: #f8fafc;
    --dcn-accent-muted: #7b8698;
    --dcn-green: #53c783;
    --dcn-navy: #0a1929;
    --dcn-shadow: 0 12px 30px rgb(26 37 53 / 0.08), 0 1px 3px rgb(26 37 53 / 0.08);
}

.dcn-stage {
    width: 100%;
    padding: 32px 0;
    color: var(--dcn-ink);
    font-family: "Hanken Grotesk", Arial, sans-serif;
}

.blog-sidebar-ask-doctor .dcn-stage {
    padding: 0;
}

.blog-sidebar-ask-doctor .dcn-card {
    border-radius: 24px;
}

.dcn-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    border: 1px solid var(--dcn-border);
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: var(--dcn-shadow);
    transition: opacity 180ms ease, visibility 180ms ease;
}

.dcn-card::after {
    content: "";
    position: absolute;
    right: -86px;
    bottom: -110px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 196, 245, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.dcn-visual {
    position: relative;
    min-width: 0;
    min-height: 180px;
    overflow: hidden;
}

.dcn-visual-wash {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 24% 18%, rgba(94, 196, 245, 0.34), transparent 34%),
        linear-gradient(135deg, #09182b 0%, #0e2440 55%, #142f52 100%);
}

.dcn-visual-wash::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.48;
}

.dcn-image-mask {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.dcn-doctor-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(0.98) contrast(1.02);
    margin: 0 !important;
}

.dcn-image-mask::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(9, 24, 43, 0.04) 0%, rgba(9, 24, 43, 0.08) 70%, rgba(255, 255, 255, 0.18) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(9, 24, 43, 0.12));
}

.dcn-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 26px 24px 24px;
    text-align: center;
}

.dcn-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 0 12px;
    color: var(--dcn-blue);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dcn-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dcn-cyan);
    box-shadow: 0 0 10px rgba(94, 196, 245, 0.58);
}

.dcn-title {
    max-width: 100%;
    margin: 0 0 16px;
    color: var(--dcn-ink);
    font-family: "Cal Sans", Arial, sans-serif;
    font-size: 26px;
    line-height: 0.96;
    letter-spacing: 0;
}

a.dcn-action svg {
    width: 18px;
    height: 18px;
    margin-right: 4px;
}

.dcn-action {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 40px;
    border-radius: 999px;
    padding: 0 18px;
    background-color: #25d366;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 180ms;
}

.dcn-action:hover {
    background-color: #128c7e;
}

.dcn-action:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgb(17 24 39 / 0.16);
}

.dcn-card.dcn-is-ready {
    opacity: 1;
}

.dcn-card.dcn-is-closed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 460px) {
    .dcn-stage {
        padding: 24px 0;
    }

    .dcn-card {
        border-radius: 24px;
    }

    .dcn-visual {
        min-height: 180px;
    }

    .dcn-copy {
        padding: 22px 18px 20px;
    }

    .dcn-kicker {
        margin-bottom: 9px;
        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .dcn-title {
        margin-bottom: 12px;
        font-size: 26px;
    }

    .dcn-action {
        min-height: 36px;
        padding: 0 14px;
        font-size: 13px;
    }
}
