.qanda-page {
    --qanda-primary: #002b63;
    --qanda-secondary: #0c33b3;
    --qanda-accent: #1b71e1;
    --qanda-ink: #101827;
    --qanda-muted: #647084;
    --qanda-line: #dce7f5;
    --qanda-surface: #f6f9fd;
    --qanda-container: 1140px;
    --qanda-readable: 800px;
    background: #fff;
    color: var(--qanda-ink);
    font-family: "DM Sans", sans-serif;
}

/* .qanda-page .container {
    max-width: var(--qanda-container);
} */

.qanda-page .qanda-hero {
    min-height: 470px;
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-image:
        linear-gradient(100deg, rgba(5, 22, 77, .96) 0%, rgba(0, 43, 99, .9) 46%, rgba(12, 51, 179, .82) 100%),
        url("../img/support/supporttask_banner.webp");
    background-size: cover;
    background-position: center;
    padding: 92px 0 84px;
}

.qanda-page .qanda-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .32;
    z-index: -1;
}

/* .qanda-page .qanda-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(246, 249, 253, 0) 0%, #f6f9fd 100%);
    z-index: -1;
} */

.qanda-page .qanda-hero-inner {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.qanda-page .qanda-eyebrow,
.qanda-page .qanda-topic-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 10px 18px;
    margin-bottom: 20px;
}

.qanda-page .qanda-topic-kicker {
    color: var(--qanda-primary);
    background: #edf5ff;
    border-color: #cfe2fb;
    margin-bottom: 14px;
}

.qanda-page .qanda-hero h1 {
    max-width: 980px;
    color: #fff;
    font-family: "Red Hat Display", sans-serif;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 auto 22px;
}

.qanda-page .qanda-hero-copy,
.qanda-page .qanda-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 auto 30px;
}

.qanda-page .qanda-search {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.qanda-page .qanda-search i {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--qanda-primary);
    font-size: 18px;
    z-index: 1;
}

.qanda-page .qanda-search input[type="search"] {
    width: 100%;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, .54);
    border-radius: 14px;
    background: #fff;
    color: var(--qanda-ink);
    font-size: 18px;
    font-weight: 600;
    padding: 0 24px 0 58px;
    outline: none;
    box-shadow: 0 22px 58px rgba(0, 15, 45, .22);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.qanda-page .qanda-search input[type="search"]::placeholder {
    color: #778295;
}

.qanda-page .qanda-search input[type="search"]:focus {
    border-color: var(--qanda-accent);
    box-shadow: 0 22px 62px rgba(27, 113, 225, .28);
    transform: translateY(-1px);
}

.qanda-page .qanda-content {
    background: linear-gradient(180deg, #f6f9fd 0%, #fff 100%);
    padding: 50px 0 50px;
}

.qanda-page .qanda-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.qanda-page .qanda-topic-card {
    min-height: 268px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: start;
    gap: 18px;
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid #e4ebf5;
    border-radius: 18px;
    background: #fff;
    color: var(--qanda-muted);
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(16, 24, 39, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.qanda-page .qanda-topic-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--qanda-primary), var(--qanda-accent));
    opacity: 0;
    transition: opacity .25s ease;
}

.qanda-page .qanda-topic-card:hover {
    color: var(--qanda-muted);
    border-color: #b8d2f4;
    transform: translateY(-7px);
    box-shadow: 0 20px 46px rgba(0, 43, 99, .14);
}

.qanda-page .qanda-topic-card:hover::before {
    opacity: 1;
}

.qanda-page .qanda-topic-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef6ff, #f8fbff);
    color: var(--qanda-primary);
    font-size: 28px;
}

.qanda-page .qanda-card-body {
    display: block;
}

.qanda-page .qanda-topic-card h2 {
    color: var(--qanda-ink);
    font-size: 22px;
    line-height: 1.24;
    font-weight: 900;
    margin: 8px 0 10px;
}

.qanda-page .qanda-topic-card p {
    color: var(--qanda-muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.qanda-page .qanda-count {
    display: inline-flex;
    color: var(--qanda-primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.qanda-page .qanda-card-arrow {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border-radius: 999px;
    background: #edf5ff;
    color: var(--qanda-primary);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.qanda-page .qanda-topic-card:hover .qanda-card-arrow {
    transform: translateX(4px);
    background: var(--qanda-primary);
    color: #fff;
}

.qanda-page .qanda-section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.qanda-page .qanda-section-heading .pre {
    color: var(--qanda-primary);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.qanda-page .qanda-article-list,
.qanda-page .qanda-empty {
    max-width: var(--qanda-readable);
    margin: 0 auto;
}

.qanda-page .qanda-article-row {
    border: 1px solid #e4ebf5;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 16px;
    box-shadow: 0 10px 28px rgba(16, 24, 39, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.qanda-page .qanda-article-row:hover {
    border-color: #b8d2f4;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 43, 99, .1);
}

.qanda-page .qanda-article-row a {
    display: block;
    padding: 24px 28px;
    text-decoration: none;
}

.qanda-page .qanda-article-row h2,
.qanda-page .qanda-article-row h3 {
    color: var(--qanda-ink);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 900;
    margin: 0 0 8px;
}

.qanda-page .qanda-article-row p,
.qanda-page .qanda-empty {
    color: var(--qanda-muted);
}

.qanda-page .qanda-pagination {
    margin-top: 36px;
    text-align: center;
}

.qanda-page .qanda-topic-search-hero {
    min-height: auto;
    padding: 36px 0;
    background-image: linear-gradient(90deg, #05164d 0%, #0c33b3 100%);
}

.qanda-page .qanda-topic-search-hero::before,
.qanda-page .qanda-topic-search-hero::after {
    display: none;
}

.qanda-page .qanda-topic-search-hero .qanda-search {
    max-width: 100%;
}

.qanda-page .qanda-topic-search-hero .qanda-search input[type="search"] {
    height: 58px;
    border-color: rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    box-shadow: none;
}

.qanda-page .qanda-topic-search-hero .qanda-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, .9);
}

.qanda-page .qanda-topic-search-hero .qanda-search i {
    color: #fff;
}

.qanda-page .qanda-topic-inner,
.qanda-page .qanda-single-content {
    padding: 50px 0 50px;
    background:
        linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.qanda-page .qanda-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    color: var(--qanda-muted);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.qanda-page .qanda-breadcrumb a,
.qanda-page .qanda-breadcrumb span {
    color: var(--qanda-muted);
    text-decoration: none;
}

.qanda-page .qanda-breadcrumb a:hover {
    color: var(--qanda-primary);
}

.qanda-page .qanda-breadcrumb span::before {
    content: ">";
    margin-right: 7px;
    color: #9aa7ba;
}

/* .qanda-page .qanda-topic-layout,
.qanda-page .qanda-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 34px;
    align-items: start;
} */

.qanda-page .qanda-topic-main {
    min-width: 0;
}

.qanda-page .qanda-topic-header {
    position: relative;
    max-width: var(--qanda-readable);
    margin-bottom: 34px;
    padding-left: 72px;
}

.qanda-page .qanda-topic-header-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 3px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef6ff, #fff);
    color: var(--qanda-primary);
    font-size: 26px;
    box-shadow: 0 10px 24px rgba(0, 43, 99, .08);
}

.qanda-page .qanda-topic-header h1,
.qanda-page .qanda-detail-header h1 {
    color: var(--qanda-ink);
    font-family: "Red Hat Display", sans-serif;
    font-weight: 900;
    letter-spacing: 0;
}

.qanda-page .qanda-topic-header h1 {
    font-size: 42px;
    line-height: 1.12;
    margin: 0 0 10px;
}

.qanda-page .qanda-topic-header p {
    color: var(--qanda-muted);
    font-size: 16px;
    line-height: 1.62;
    margin: 0 0 16px;
}

.qanda-page .qanda-topic-total {
    display: inline-flex;
    color: var(--qanda-primary);
    font-size: 14px;
    font-weight: 900;
}

.qanda-page .qanda-topic-section {
    overflow: hidden;
    border: 1px solid #dce7f5;
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    margin-bottom: 24px;
    box-shadow: 0 14px 38px rgba(0, 43, 99, .06);
}

.qanda-page .qanda-topic-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 26px;
    border-bottom: 1px solid var(--qanda-line);
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.qanda-page .qanda-topic-section-head h2 {
    color: var(--qanda-ink);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 900;
    margin: 0;
}

.qanda-page .qanda-topic-section-head span {
    flex: 0 0 auto;
    color: var(--qanda-primary);
    font-size: 13px;
    font-weight: 900;
}

.qanda-page .qanda-topic-article a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 17px 26px;
    color: var(--qanda-ink);
    text-decoration: none;
    border-bottom: 1px solid #edf2f8;
    transition: background .2s ease;
}

.qanda-page .qanda-topic-article:last-child a {
    border-bottom: 0;
}

.qanda-page .qanda-topic-article a:hover {
    background: #f5f9ff;
}

.qanda-page .qanda-topic-article strong {
    display: block;
    color: var(--qanda-ink);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 4px;
}

.qanda-page .qanda-topic-article em {
    display: block;
    color: var(--qanda-muted);
    font-size: 14px;
    line-height: 1.45;
    font-style: normal;
}

.qanda-page .qanda-topic-article i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #edf5ff;
    color: var(--qanda-primary);
    font-size: 12px;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.qanda-page .qanda-topic-article a:hover strong {
    color: var(--qanda-primary);
}

.qanda-page .qanda-topic-article a:hover i {
    transform: translateX(4px);
    background: var(--qanda-primary);
    color: #fff;
}

.qanda-page .qanda-side-panel {
    position: sticky;
    top: 112px;
    padding: 22px;
    border: 1px solid #dce7f5;
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 34px rgba(0, 43, 99, .07);
}

.qanda-page .qanda-side-panel h2 {
    color: var(--qanda-ink);
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 14px;
}

.qanda-page .qanda-side-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    color: var(--qanda-muted);
    text-decoration: none;
    border-bottom: 1px solid #edf2f8;
}

.qanda-page .qanda-side-panel a:last-child {
    border-bottom: 0;
}

.qanda-page .qanda-side-panel a:hover,
.qanda-page .qanda-side-panel a.is-active {
    color: var(--qanda-primary);
}

.qanda-page .qanda-side-panel small,
.qanda-page .qanda-side-panel i {
    flex: 0 0 auto;
    color: var(--qanda-primary);
}

/* .qanda-page .qanda-detail-article {
    max-width: var(--qanda-readable);
} */

.qanda-page .qanda-detail-header {
    margin-bottom: 30px;
}

.qanda-page .qanda-detail-header h1 {
    font-size: 42px;
    line-height: 1.12;
    margin: 0 0 14px;
}

.qanda-page .qanda-detail-header p {
    color: var(--qanda-muted);
    font-size: 16px;
    line-height: 1.62;
    margin: 0 0 14px;
}

.qanda-page .qanda-detail-header span:not(.qanda-topic-kicker) {
    display: block;
    color: #7d8796;
    font-size: 13px;
    font-weight: 700;
}

.qanda-page .qanda-detail-body {
    color: var(--qanda-ink);
    font-size: 16px;
    line-height: 1.75;
}

.qanda-page .qanda-detail-body p {
    color: var(--qanda-ink);
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 22px;
}

.qanda-page .qanda-detail-body h2,
.qanda-page .qanda-detail-body h3,
.qanda-page .qanda-detail-body h4 {
    color: var(--qanda-ink);
    font-family: "Red Hat Display", sans-serif;
    font-weight: 900;
    margin: 38px 0 14px;
}

.qanda-page .qanda-detail-body h2 {
    font-size: 28px;
}

.qanda-page .qanda-detail-body h3 {
    font-size: 23px;
}

.qanda-page .qanda-detail-body ul,
.qanda-page .qanda-detail-body ol {
    margin: 0 0 24px;
    padding-left: 22px;
}

.qanda-page .qanda-detail-body li {
    color: var(--qanda-ink);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 8px;
}

.qanda-page .qanda-detail-body a {
    color: var(--qanda-secondary);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.qanda-page .qanda-detail-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(16, 24, 39, .1);
}

.qanda-page .qanda-detail-body blockquote,
.qanda-page .qanda-detail-body .wp-block-quote {
    margin: 30px 0;
    padding: 20px 24px;
    border: 1px solid #b9cef0;
    border-left: 4px solid var(--qanda-accent);
    border-radius: 14px;
    background: #f5f9ff;
    color: var(--qanda-ink);
}

.qanda-page .qanda-detail-body blockquote p,
.qanda-page .qanda-detail-body .wp-block-quote p {
    margin-bottom: 0;
}

.qanda-page .qanda-related-panel a {
    align-items: flex-start;
}

.qanda-page .qanda-related-panel span {
    font-weight: 800;
    line-height: 1.35;
}

.qanda-page .qanda-article-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 76px 0 70px;
    background-image:
        radial-gradient(circle at 86% 18%, rgba(27, 113, 225, .36), transparent 34%),
        linear-gradient(105deg, rgba(5, 22, 77, .98) 0%, rgba(0, 43, 99, .94) 48%, rgba(12, 51, 179, .88) 100%),
        url("../img/support/supporttask_banner.webp");
    background-size: auto, auto, cover;
    background-position: center;
}

.qanda-page .qanda-article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .36;
    z-index: -1;
}

/* .qanda-page .qanda-article-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(247, 251, 255, 0) 0%, #f7fbff 100%);
    z-index: -1;
} */

/* .qanda-page .qanda-article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 46px;
    align-items: center;
} */

/* .qanda-page .qanda-article-hero-copy {
    max-width: 780px;
} */

.qanda-page .qanda-breadcrumb-light {
    margin-bottom: 28px;
}

.qanda-page .qanda-breadcrumb-light a,
.qanda-page .qanda-breadcrumb-light span {
    color: rgba(255, 255, 255, .76);
}

.qanda-page .qanda-breadcrumb-light a:hover {
    color: #fff;
}

.qanda-page .qanda-breadcrumb-light span::before {
    color: rgba(255, 255, 255, .42);
}

.qanda-page .qanda-article-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 10px 18px;
    margin-bottom: 20px;
}

.qanda-page .qanda-article-hero h1 {
    color: #fff;
    font-family: "Red Hat Display", sans-serif;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 18px;
}

.qanda-page .qanda-article-hero-copy > p {
    /* max-width: 720px; */
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 24px;
}

.qanda-page .qanda-article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.qanda-page .qanda-article-hero-meta span,
.qanda-page .qanda-article-hero-meta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.qanda-page .qanda-article-hero-meta a:hover {
    background: #fff;
    color: var(--qanda-primary);
}

.qanda-page .qanda-article-hero-panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 22px;
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
}

.qanda-page .qanda-article-hero-panel h2 {
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 900;
    margin: 0 0 16px;
}

.qanda-page .qanda-article-hero-panel .qanda-search {
    max-width: 100%;
}

.qanda-page .qanda-article-hero-panel .qanda-search input[type="search"] {
    height: 56px;
    border-radius: 12px;
    box-shadow: none;
}

.qanda-page .qanda-article-hero-panel p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 1.55;
    margin: 16px 0 0;
}

@media (max-width: 991px) {
    .qanda-page {
        --qanda-readable: 100%;
    }

    .qanda-page .qanda-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* .qanda-page .qanda-topic-layout,
    .qanda-page .qanda-detail-layout {
        grid-template-columns: 1fr;
    } */

    .qanda-page .qanda-side-panel {
        position: static;
    }

    .qanda-page .qanda-hero h1,
    .qanda-page .qanda-topic-header h1,
    .qanda-page .qanda-detail-header h1 {
        font-size: 38px;
    }

    /* .qanda-page .qanda-article-hero-grid {
        grid-template-columns: 1fr;
    } */

    .qanda-page .qanda-article-hero h1 {
        font-size: 40px;
    }

    .qanda-page .qanda-article-hero-panel {
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    .qanda-page .qanda-hero {
        min-height: 390px;
        padding: 62px 0 58px;
    }

    .qanda-page .qanda-hero h1,
    .qanda-page .qanda-topic-header h1,
    .qanda-page .qanda-detail-header h1 {
        font-size: 30px;
    }

    .qanda-page .qanda-hero-copy,
    .qanda-page .qanda-hero p {
        font-size: 15px;
    }

    .qanda-page .qanda-search input[type="search"] {
        height: 58px;
        font-size: 15px;
        padding-left: 50px;
    }

    .qanda-page .qanda-search i {
        left: 19px;
    }

    .qanda-page .qanda-content,
    .qanda-page .qanda-topic-inner,
    .qanda-page .qanda-single-content {
        padding: 38px 0 62px;
    }

    .qanda-page .qanda-topic-grid {
        grid-template-columns: 1fr;
    }

    .qanda-page .qanda-topic-card {
        min-height: auto;
    }

    .qanda-page .qanda-topic-search-hero {
        padding: 24px 0;
    }

    .qanda-page .qanda-topic-header {
        padding-left: 0;
    }

    .qanda-page .qanda-topic-header-icon {
        position: static;
        margin-bottom: 14px;
    }

    .qanda-page .qanda-topic-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .qanda-page .qanda-topic-article a {
        align-items: flex-start;
        padding: 16px 18px;
    }

    .qanda-page .qanda-article-hero {
        padding: 48px 0 52px;
    }

    .qanda-page .qanda-article-hero h1 {
        font-size: 30px;
    }

    .qanda-page .qanda-article-hero-copy > p {
        font-size: 15px;
    }

    .qanda-page .qanda-article-hero-panel {
        padding: 22px;
    }
}
