:root {
    --max-w: 920px;
    --green: #098d72;
    --green-dark: #06715b;
    --mint: #b5f3e1;
    --cream: #fffed2;
    --ink: #17211f;
    --muted: #5f6967;
    --line: #d7e5e1;
    --page: #fbfbfc;
    --paper: #ffffff;
    --pdf-red: #d9534f;
    --focus: #075fbe;
    font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    min-height: 100%; margin: 0; color: var(--ink); background: var(--page);
    font-size: 17px; line-height: 1.62;
}
a { color: var(--green); text-underline-offset: 0.16em; }
a:hover { color: #8b341e; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
summary:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.download-set { margin: 8px 0; border: 1px solid var(--line); border-radius: 10px; }
.download-set summary { min-height: 44px; padding: 10px 14px; cursor: pointer; color: var(--green-dark); font-weight: 700; line-height: 1.4; }
.download-set[open] > .download-grid { padding: 0 12px 12px; }
.download-level { margin: 0 0 8px; font-size: 14px; color: var(--muted); }
h1, h2, h3 { overflow-wrap: anywhere; hyphens: auto; hyphenate-limit-chars: 12 5 5; }

.container {
    width: min(var(--max-w), calc(100% - 28px)); margin: 20px auto; padding: 24px;
    border-radius: 14px; background: var(--paper); box-shadow: 0 6px 24px rgba(17, 24, 39, 0.07);
}
.topbar { display: flex; flex-direction: column; gap: 8px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.brand__logo { width: 64px; height: 42px; object-fit: cover; object-position: center; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 18px; line-height: 1.25; }
.brand small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.site-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.site-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 6px 10px; border-radius: 8px; color: var(--green); font-size: 14px; text-decoration: none; }
.site-nav a:hover { color: var(--green-dark); background: #edfaf6; }
.topbar + hr, .page-shell > hr { margin: 12px 0; border: 0; border-top: 1px solid #edf1f0; }
.page-shell { display: block; }
[hidden] { display: none !important; }
.grade-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.grade-nav a { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: 8px 12px; border: 1px solid #b7cdc6; border-radius: 8px; color: var(--green-dark); background: #fff; text-decoration: none; font-weight: 700; }
.grade-nav a:hover { background: #edf7f3; }
.grade-nav a[aria-current="page"] { color: #fff; background: var(--green-dark); border-color: var(--green-dark); }
.materials-catalog { display: grid; gap: 16px; margin: 14px 0 20px; }
.catalog-search { margin: 0; }
.catalog-search label { display: block; font-weight: 700; margin-bottom: 6px; }
.catalog-search__field { display: flex; gap: 10px; }
.catalog-search input { flex: 1; width: 100%; min-width: 0; min-height: 48px; border: 1px solid #839b92; border-radius: 8px; padding: 11px 14px; font: inherit; color: var(--ink); background: #fff; }
.catalog-search input:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.catalog-search button { min-height: 44px; padding: 8px 12px; border: 1px solid #b7cdc6; border-radius: 8px; background: #fff; color: var(--green-dark); font: inherit; cursor: pointer; }
.catalog-search__status { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
/* Keep the live region available without reserving a blank line before a search. */
.catalog-search__status:empty { margin: 0; }
.section-nav { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 0 16px; border-bottom: 1px solid var(--line); }
.section-nav a { display: flex; align-items: center; gap: 10px; max-width: 100%; padding: 8px 12px; min-height: 44px; color: var(--green-dark); background: #edf7f3; border-radius: 7px; font-size: 15px; text-decoration: none; }
.section-nav a:hover { background: #dceee6; }
.section-nav span { font-variant-numeric: tabular-nums; color: #4b6259; }
#catalog-results { display: grid; gap: 24px; }
.catalog-section { margin: 0; scroll-margin-top: 16px; }
.catalog-section > h2 { margin: 0 0 12px; color: var(--green-dark); font-size: 24px; line-height: 1.3; }
.catalog-topics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.catalog-topic { display: flex; flex-direction: column; min-width: 0; padding: 16px; border: 1px solid #c5d7cf; border-radius: 10px; color: var(--ink); background: #fff; text-decoration: none; transition: border-color .16s, background-color .16s; }
.catalog-topic:hover { border-color: var(--green); background: #f3faf7; color: var(--ink); }
.catalog-topic h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.35; color: var(--green-dark); }
.catalog-topic__format { margin-top: auto; font-size: 13px; color: #50675e; }
.catalog-topic__grade { margin-bottom: 6px; color: #50675e; font-size: 13px; }
.catalog-empty { padding: 16px; border-radius: 10px; background: #f3f7f5; }
.catalog-empty p { margin: 0; }
.catalog-empty a { display: inline-block; margin-top: 8px; }
.grade-picker { margin: 20px 0; }
.grade-picker h2 { margin: 0 0 12px; font-size: 24px; line-height: 1.3; color: var(--green-dark); }
.grade-picker__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.grade-picker__card { display: grid; grid-template-columns: 1fr auto; gap: 4px; padding: 14px 16px; border: 1px solid #b7cdc6; border-radius: 10px; color: var(--green-dark); text-decoration: none; background: #f8fcfa; }
.grade-picker__card:hover { color: var(--green-dark); background: #e9f5ef; border-color: var(--green); }
.grade-picker__card strong { grid-column: 1 / -1; font-size: 24px; }
.grade-picker__card span { font-size: 14px; }
.exam-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 20px 0; }
.exam-links a { display: flex; flex-direction: column; gap: 6px; padding: 16px; border-radius: 10px; background: #edf7f3; text-decoration: none; color: var(--green-dark); }
.exam-links a:hover { background: #dceee6; }
.exam-links strong { font-size: 21px; }
.exam-links span { font-size: 14px; }
@media (max-width: 650px) {
    .catalog-topics, .exam-links { grid-template-columns: minmax(0, 1fr); }
    .grade-picker__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section-nav a { justify-content: space-between; }
    .catalog-search__field { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) { .catalog-topic { transition: none; } }

.breadcrumbs { margin: 12px 0; color: var(--muted); font-size: 13px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 5px 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #99a7a3; }
.breadcrumbs a { color: inherit; }

.article-head, .hero, .catalog-heading {
    margin-top: 12px; padding: 14px 16px; border-left: 5px solid var(--green);
    border-radius: 10px; background: linear-gradient(180deg, #ffffff, #f7fdfb);
}
.article-head h1, .hero h1, .catalog-heading h1, .catalog-heading h2 {
    margin: 5px 0 0; color: #073f34; font-size: clamp(26px, 4vw, 36px); line-height: 1.2;
}
.article-head p, .hero__lead, .catalog-heading p { margin: 9px 0 0; color: var(--muted); }
.article-head > .eyebrow:first-child, .article-head h1:first-child { margin-top: 0; }
.eyebrow, .section-kicker {
    margin: 0; color: var(--green); font-size: 13px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.hero__facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.hero__facts span, .demand-badge {
    display: inline-block; padding: 5px 9px; border: 1px solid #a8dacd; border-radius: 999px;
    color: #075c4b; background: #edfaf6; font-size: 13px; font-weight: 700;
}

.download-panel { margin: 16px 0; }
.download-panel > .section-kicker { display: none; }
.page-shell > .download-panel > h2 {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
    clip-path: inset(50%); white-space: nowrap; border: 0;
}
.download-grid, .downloads { display: flex; flex-direction: column; gap: 10px; }
.download-card {
    display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; align-items: center; gap: 12px;
    min-height: 80px; padding: 10px 12px; border: 1px solid #e1ece8; border-radius: 10px;
    color: inherit; background: #fff; cursor: pointer;
}
.download-card:hover { border-color: var(--green); background: #fbfffd; }
.download-card__badge {
    display: flex; flex-direction: column; align-items: center; justify-content: space-between;
    justify-self: center; width: 44px; height: 56px; padding: 8px 3px 4px; border: 2px solid var(--pdf-red);
    border-radius: 6px; color: var(--pdf-red); font-size: 12px; line-height: 1.2;
    box-shadow: 0 6px 18px rgba(217, 83, 79, 0.08);
}
.download-card__badge b { align-self: flex-end; font-size: 10px; }
.download-card__body { min-width: 0; }
.download-card__body strong { display: block; color: #072b24; font-size: 15px; overflow-wrap: anywhere; }
.download-card__body p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.download-card__body a { position: relative; color: inherit; }
.download-card__body a:hover { color: var(--green-dark); }
.download-card__action, .download-modal__cancel {
    display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
    padding: 8px 12px; border: 0; border-radius: 8px; color: #fff; background: var(--pdf-red);
    font: inherit; font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer;
}
.download-card__action:hover, .download-modal__cancel:hover { color: #fff; background: #bd403c; }
.download-modal {
    width: min(500px, calc(100% - 32px)); max-height: calc(100vh - 32px); margin: auto;
    padding: 28px 32px; border: 0; border-radius: 12px; color: var(--ink); background: #fff;
    font: inherit; font-size: 17px; line-height: 1.45; text-align: center; overflow-y: auto;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}
.download-modal:not([open]) { display: none; }
.download-modal::backdrop { background: rgba(0, 0, 0, 0.5); }
.download-modal h2 { margin: 0 0 20px; color: var(--ink); font-size: 21px; line-height: 1.3; }
.download-modal p { margin: 16px 0; }
.download-modal__benefits { display: inline-block; margin: 0; padding-left: 22px; text-align: left; }
.download-modal__benefits li + li { margin-top: 5px; }
.download-modal__seconds { display: inline-block; min-width: 2em; padding: 3px 5px; border-radius: 5px; color: #fff; background: var(--pdf-red); font-weight: 700; font-variant-numeric: tabular-nums; }
.download-status { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
body.has-download-modal { overflow: hidden; }

.index-theme__container { margin: 22px 0 28px; }
.index-theme__header {
    display: flex; align-items: center; margin: 0 0 9px; padding: 12px 16px;
    border-left: 5px solid var(--green-dark); border-radius: 8px; color: #fff;
    background: var(--green); font-size: 21px; font-weight: 400; line-height: 1.35;
}
.index-theme__card-container, .catalog-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.index-theme__card-link, .category-card {
    display: block; flex: 1 1 240px; min-width: 0; padding: 17px; border: 1px solid var(--green);
    border-left: 5px solid var(--green); border-radius: 10px; color: inherit; background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04); text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}
.category-card { display: flex; min-height: 92px; flex-direction: column; justify-content: space-between; }
.index-theme__card-link:hover, .category-card:hover { color: #fff; background: var(--green); }
.index-theme__card-link h2, .index-theme__card-link h3, .category-card h2 {
    margin: 0 0 6px; color: var(--green); font-size: 20px; line-height: 1.3;
}
.index-theme__card-link:hover h2, .index-theme__card-link:hover h3, .category-card:hover h2,
.index-theme__card-link:hover .demand-badge, .category-card:hover .category-card__link { color: #fff; }
.index-theme__card-link p, .category-card p { margin: 0; }
.category-card__link { display: block; margin-top: 12px; color: var(--green-dark); font-size: 14px; font-weight: 700; }

.content-grid {
    display: grid; grid-template-columns: minmax(0, 1fr) 230px; align-items: start;
    gap: 20px; margin-top: 20px;
}
.content-card { min-width: 0; }
.content-card h2 { margin: 24px 0 10px; color: #0b3b32; font-size: 25px; line-height: 1.28; }
.content-card h2:first-child { margin-top: 0; }
.content-card h2[id], .content-card h3[id] { scroll-margin-top: 16px; }
.content-card h3 { margin: 20px 0 8px; line-height: 1.35; }
.content-card p, .content-card ul, .content-card ol { margin-top: 10px; margin-bottom: 12px; }
.content-card li + li { margin-top: 7px; }
.source-list { padding-left: 22px; }

.material-memos { margin: 24px 0; }
.material-memos__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: start; }
.material-memos__grid--single { grid-template-columns: minmax(0, 1fr); }
.memo-card { min-width: 0; margin: 0; padding: 0; border: 0; }
.memo-card__preview { display: block; cursor: zoom-in; }
.memo-card__preview img { display: block; width: 100%; height: auto; }
.memo-visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px !important; overflow: hidden; clip: rect(0, 0, 0, 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.memo-card a:focus-visible, .memo-modal button:focus-visible { outline: 3px solid var(--green-dark); outline-offset: 4px; }
.memo-modal { width: min(1080px, calc(100vw - 24px)); height: min(92vh, 1500px); max-width: none; max-height: 92vh; padding: 0; border: 0; border-radius: 12px; color: var(--ink); background: #fff; }
.memo-modal[open] { display: flex; flex-direction: column; }
.memo-modal::backdrop { background: rgba(12, 31, 26, .7); }
.memo-modal__bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.memo-modal__bar h2 { margin: 0; font-size: 18px; line-height: 1.3; }
.memo-modal__actions { display: flex; flex: 0 0 auto; gap: 8px; }
.memo-modal__bar button { flex: 0 0 auto; min-height: 44px; padding: 8px 14px; border: 1px solid var(--green); border-radius: 6px; background: #fff; color: var(--green-dark); font: inherit; cursor: pointer; }
.memo-modal__body { flex: 1; min-height: 0; overflow: auto; background: #f7fdfb; }
.memo-modal__body img { display: block; width: 100%; height: auto; }
.memo-modal--zoomed .memo-modal__body img { width: max(100%, 1200px); max-width: none; }
.memo-modal-open { overflow: hidden; }
@media (max-width: 600px) {
    .memo-modal--zoomed .memo-modal__body img { width: 800px; }
    .memo-modal__bar { flex-wrap: wrap; gap: 8px; }
    .memo-modal__bar h2 { width: 100%; }
    .memo-modal__actions { width: 100%; justify-content: flex-end; }
}
.source-list a { font-weight: 700; }
.definition, .teacher-note, .example { margin: 16px 0; padding: 14px 16px; border-radius: 8px; }
.definition > :first-child, .teacher-note > :first-child, .example > :first-child { margin-top: 0; }
.definition > :last-child, .teacher-note > :last-child, .example > :last-child { margin-bottom: 0; }
.definition { border-left: 4px solid var(--green); background: #edfaf6; }
.teacher-note { border: 1px solid #d7df8b; background: var(--cream); }
.example { border: 1px solid #b9ded5; background: #f7fdfb; }
.example-source { display: block; margin-bottom: .35em; font-style: italic; font-weight: 400; }
.example-source em, .example-source i { font-style: inherit; }
.example-explanation { display: block; font-style: normal; font-weight: 400; }
.definition strong:first-child, .teacher-note strong:first-child, .example > strong:first-child {
    display: block; margin-bottom: 5px;
}
.rule-table { width: 100%; margin: 16px 0; border-collapse: collapse; font-size: 15px; }
.rule-table th, .rule-table td { padding: 11px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.rule-table th { background: #dff5ee; }
.toc { position: sticky; top: 16px; padding: 14px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.toc strong { display: block; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 19px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.toc li + li { margin-top: 6px; }
.cta { margin-top: 24px; padding: 16px; border-radius: 10px; color: #fff; background: var(--green); }
.cta h2 { margin: 0; color: #fff; }
.cta p { margin-bottom: 15px; }
.button, .back-link {
    display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 7px 12px;
    border: 1px solid var(--green); border-radius: 8px; color: #fff; background: var(--green);
    font-weight: 700; text-decoration: none;
}
.button:hover, .back-link:hover { color: var(--green); background: #fff; }
.button--light { color: var(--green); background: #fff; }
.button--light:hover { color: #8b341e; }
.cta .button { border-color: #fff; color: var(--green); background: #fff; }
.cta .button:hover { color: var(--green-dark); }

.site-footer { margin-top: 24px; padding-top: 14px; border-top: 1px dashed #d5e5e0; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.footer-links a { padding: 6px 8px; border-radius: 6px; font-size: 13px; text-decoration: none; }
.site-footer p { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

.related-materials { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); }
.related-materials h2 { margin: 0 0 12px; color: #0b3b32; font-size: 25px; line-height: 1.28; }
.related-materials__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.related-materials__grid a {
    display: flex; min-height: 68px; flex-direction: column; justify-content: center; padding: 12px 14px;
    border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: 9px;
    color: var(--ink); background: #fff; text-decoration: none;
}
.related-materials__grid a:hover { border-color: var(--green); color: var(--green-dark); background: #f4fcf9; }
.related-materials__grid strong { font-size: 15px; line-height: 1.35; }
.related-materials__grid span { margin-top: 4px; color: var(--muted); font-size: 13px; }

.instruction-promo {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin: 20px 0; padding: 16px; border: 1px solid #b7ddd3; border-radius: 10px;
    background: #f4fcf9;
}
.instruction-promo h2 { margin: 0; color: #0b3b32; font-size: 24px; line-height: 1.3; }
.instruction-promo .button { flex-shrink: 0; }
.instruction-promo p { margin: 0; }
.instruction-note {
    margin: 16px 0; padding: 14px 16px; border-left: 4px solid var(--green);
    border-radius: 8px; background: #edfaf6;
}
.instruction-note strong { display: block; color: var(--green-dark); }
.instruction-note p { margin: 3px 0 0; }
.instruction-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px;
    margin: 20px 0; padding: 0; list-style: none; counter-reset: none;
}
.instruction-step { min-width: 0; }
.instruction-step figure {
    height: 100%; margin: 0; overflow: hidden; border: 1px solid var(--line);
    border-radius: 10px; background: #fff; box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
}
.instruction-step figure > a { display: block; background: #f4f7f6; cursor: zoom-in; }
.instruction-step figure > a:focus-visible { outline: 3px solid var(--green-dark); outline-offset: -3px; }
.instruction-step img { display: block; width: 100%; height: auto; }
.instruction-step figcaption { display: flex; align-items: flex-start; gap: 11px; padding: 13px 14px 15px; }
.instruction-step__number {
    display: grid; flex: 0 0 34px; place-items: center; width: 34px; height: 34px;
    border-radius: 50%; color: #fff; background: var(--green); font-weight: 700;
}
.instruction-step figcaption strong, .instruction-step figcaption small { display: block; }
.instruction-step figcaption strong { color: #0b3b32; font-size: 16px; line-height: 1.35; }
.instruction-step figcaption small { margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.instruction-cta { text-align: center; }
.video-section { margin: 20px 0; }
.video-section h2 { margin: 0 0 12px; color: #0b3b32; font-size: 25px; line-height: 1.28; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.video-card {
    min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 10px;
    background: #fff; box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
}
.video-card video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #101615; }
.video-card__body { padding: 14px 16px 16px; }
.video-card__body h3 { margin: 0; color: #0b3b32; font-size: 18px; line-height: 1.35; }
.video-card__body p { margin: 5px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

@media (max-width: 760px) {
    .content-grid { grid-template-columns: 1fr; }
    .toc { position: static; order: -1; }
    .instruction-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .instruction-promo { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
    body { font-size: 16px; }
    .container { width: min(100% - 16px, var(--max-w)); margin: 8px auto; padding: 15px; border-radius: 9px; }
    .brand strong { font-size: 16px; }
    .site-nav { gap: 4px 8px; }
    .grade-nav { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .grade-nav a { padding: 8px 6px; font-size: 14px; line-height: 1.3; text-align: center; }
    .download-card { grid-template-columns: 44px minmax(0, 1fr); gap: 10px; }
    .download-card__action { grid-column: 2; width: max-content; }
    .download-modal { padding: 24px 20px; }
    .article-head, .hero, .catalog-heading { padding: 12px; }
    .rule-table { display: block; overflow-x: auto; }
    .paronyms-table { overflow: visible; }
    .paronyms-table thead { display: none; }
    .paronyms-table tbody, .paronyms-table tr, .paronyms-table td { display: block; width: auto; }
    .paronyms-table tr { margin: 12px 0; border: 1px solid var(--line); }
    .paronyms-table td { border: 0; }
    .paronyms-table td:first-child { background: #dff5ee; font-weight: 700; }
    .paronyms-table td p:first-child { margin-top: 0; }
    .related-materials__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
}
