/* ==========================================================================
   Course Landing Page Redesign  (namespace: clr-)
   Scoped to .clr-page so it never leaks into other app-new pages.
   Reuses existing brand tokens: --primary #009AAD, --secondary #FE9501,
   --dark #012C40.  cl-darkblue #0a263b.
   ========================================================================== */

.clr-page {
    --clr-navy: #012c40;
    --clr-navy-2: #0a263b;
    --clr-teal: #009aad;
    --clr-orange: #fe9501;
    --clr-text: #46454f;
    --clr-muted: #797585;
    --clr-border: #e7e7ef;
    --clr-bg-soft: #f6f7f9;
    --clr-radius: 14px;
    position: relative;
    background: #fff;
    font-family: "Mulish", "Plus Jakarta Sans", sans-serif;
    color: var(--clr-text);
    overflow-x: clip;
}

/* sticky offset that clears the global sticky navbar (~80px) */
.clr-page {
    --clr-sticky-top: 96px;
}

/* ----------------------------------------------------------------- HERO ---*/
.clr-hero {
    position: relative;
    background: var(--clr-navy);
    color: #fff;
    padding: 56px 0 40px;
}
.clr-hero::before { /* full-bleed dark band so it reaches the right edge */
    content: "";
    position: absolute;
    inset: 0;
    background: var(--clr-navy);
    z-index: 0;
}
.clr-hero .container { position: relative; z-index: 1; }

.clr-hero h1 {
    color: #fff;
    font-weight: 800;
    font-size: 38px;
    line-height: 1.18;
    margin: 0 0 18px;
}
.clr-hero .clr-hero-desc {
    color: #d4dde2;
    font-size: 16px;
    line-height: 1.6;
    max-width: 620px;
    margin-bottom: 22px;
}
.clr-hero .clr-hero-desc p:last-child { margin-bottom: 0; }

.clr-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 28px;
}
.clr-rating .clr-stars { color: #ffb100; font-size: 17px; letter-spacing: 1px; }
.clr-rating .clr-rating-text { font-weight: 700; font-size: 15px; color: #fff; }
.clr-rating img { height: 22px; width: auto; }

/* partner / trusted logos inside hero */
.clr-hero-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 6px;
}
.clr-hero-logos img {
    height: 26px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .85;
}

/* small logo / certificate inline in hero (course logo) */
.clr-hero-courselogo img { max-height: 44px; width: auto; }

/* ----------------------------------------------------------- TAB NAV ------*/
.clr-tabnav {
    position: sticky;
    top: var(--clr-sticky-top);
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 8px;
}
.clr-tabnav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.clr-tabnav ul::-webkit-scrollbar { display: none; }
.clr-tabnav li { flex: 0 0 auto; }
.clr-tabnav a {
    display: inline-block;
    padding: 16px 2px;
    color: var(--clr-muted);
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.clr-tabnav a:hover { color: var(--clr-navy-2); }
.clr-tabnav a.active {
    color: var(--clr-navy-2);
    border-bottom-color: var(--clr-teal);
}

/* --------------------------------------------------------- LAYOUT ---------*/
.clr-body { padding: 26px 0 10px; }
.clr-main { padding-right: 26px; }

.clr-section { padding: 26px 0; border-bottom: 1px solid var(--clr-border); }
.clr-section:last-child { border-bottom: 0; }
.clr-section > h2,
.clr-h2 {
    color: var(--clr-navy-2);
    font-weight: 800;
    font-size: 26px;
    margin: 0 0 18px;
}
.clr-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}
.clr-section-head h2 { margin: 0; }

/* body copy coming from the CMS (description / objectives / who / assessment) */
.clr-richtext { color: var(--clr-text); font-size: 15.5px; line-height: 1.7; }
.clr-richtext p { margin-bottom: 14px; }
.clr-richtext ul { list-style: none; padding-left: 0; margin: 0 0 14px; }
.clr-richtext ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}
.clr-richtext ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 13px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='13' viewBox='0 0 18 13' fill='none'%3E%3Cpath d='M1 6.5L6 11.5L17 1' stroke='%23009AAD' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.clr-richtext h3, .clr-richtext h4 { color: var(--clr-navy-2); font-weight: 700; font-size: 18px; margin: 18px 0 10px; }

/* "See More" toggle + collapsible clamp */
.clr-collapsible { position: relative; overflow: hidden; transition: max-height .35s ease; }
.clr-collapsible.is-clamped { max-height: 220px; }
.clr-collapsible.is-clamped::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0; height: 70px;
    background: linear-gradient(rgba(255,255,255,0), #fff);
}
.clr-seemore {
    display: block;
    width: max-content;
    margin: 14px auto 0;
    color: var(--clr-teal);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}
.clr-seemore:hover { text-decoration: underline; }

/* ------------------------------------------------ ICON FEATURE GRID -------*/
.clr-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 30px;
    margin-top: 20px;
}
.clr-feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.clr-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.clr-feature .clr-feature-ico {
    flex: 0 0 auto;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    color: var(--clr-teal);
}
.clr-feature .clr-feature-ico svg { width: 34px; height: 34px; }
.clr-feature .clr-feature-txt { font-size: 14.5px; line-height: 1.5; color: var(--clr-text); }
.clr-feature .clr-feature-txt strong { display:block; color: var(--clr-navy-2); font-weight: 700; margin-bottom: 2px; }

/* ----------------------------------------------------- TESTIMONIALS -------*/
.clr-tst-nav { display: flex; gap: 10px; }
.clr-tst-nav button {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    background: #fff;
    color: var(--clr-navy-2);
    display: grid; place-items: center;
    cursor: pointer;
    transition: all .2s;
}
.clr-tst-nav button:hover { background: var(--clr-navy-2); color: #fff; border-color: var(--clr-navy-2); }
.clr-tst-card {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--clr-radius);
    padding: 26px 24px 20px;
    height: 100%;
    position: relative;
    box-shadow: 0 6px 24px rgba(2, 44, 64, .04);
}
.clr-tst-card .clr-tst-title { color: var(--clr-navy-2); font-weight: 800; font-size: 16px; margin-bottom: 12px; }
.clr-tst-card .clr-tst-body { font-style: italic; color: #5c6066; font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.clr-tst-card .clr-tst-meta { display: flex; align-items: center; gap: 12px; }
.clr-tst-card .clr-tst-meta img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.clr-tst-card .clr-tst-name { color: var(--clr-navy-2); font-weight: 800; font-size: 14px; margin: 0; }
.clr-tst-card .clr-tst-role { color: var(--clr-muted); font-size: 12px; margin: 0; }
.clr-tst-card .clr-tst-quote { position: absolute; right: 20px; bottom: 14px; color: var(--clr-teal); font-size: 40px; line-height: 1; font-family: Georgia, serif; opacity: .9; }

/* ---------------------------------------------------- OBJECTIVES list -----*/
.clr-objectives .clr-richtext ul li { padding-left: 34px; margin-bottom: 18px; }
.clr-objectives .clr-richtext ul li::before {
    width: 20px; height: 16px; top: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='16' viewBox='0 0 20 16' fill='none'%3E%3Cpath d='M2 8h14M11 2l6 6-6 6' stroke='%23009AAD' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ----------------------------------------------------- SCHEDULES ----------*/
.clr-schedules { padding: 26px 0; border-bottom: 1px solid var(--clr-border); }
.clr-schedules .card_id { position: relative; top: -110px; }
.clr-schedules > h2 { color: var(--clr-navy-2); font-weight: 800; font-size: 26px; margin-bottom: 18px; }
.clr-schedules .upcomin_schedul_wrp h2 { color: var(--clr-navy-2) !important; }
.clr-schedules .upcomin_schedul_box {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--clr-radius);
    padding: 18px 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(2, 44, 64, .04);
}
.clr-schedules .status {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 700; font-size: 13px; margin-bottom: 8px;
}
.clr-schedules .status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.clr-schedules .status.online { color: #1aa251; }
.clr-schedules .status.online::before { background: #1aa251; }
.clr-schedules .status.classroom { color: var(--clr-orange); }
.clr-schedules .status.classroom::before { background: var(--clr-orange); }
.clr-schedules ul.dntwpr { list-style: none; padding: 0; margin: 0 0 10px; }
.clr-schedules ul.dntwpr li { font-size: 14px; color: var(--clr-navy-2); margin-bottom: 4px; }
.clr-schedules .author_img_wrp { display: flex; align-items: center; }
.clr-schedules .author_img { margin-right: -10px; }
.clr-schedules .author_img img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; }
.clr-schedules .price_box { text-align: right; position: relative; }
.clr-schedules .price_box .badge {
    background: #ffe3e3; color: #e23b3b; font-weight: 700; font-size: 12px;
    border-radius: 6px; padding: 4px 8px; margin-bottom: 6px; display: inline-block;
}
.clr-schedules .price_box h4 { color: var(--clr-navy-2); font-weight: 800; font-size: 20px; margin: 4px 0 10px; }
.clr-schedules .price_box h4 del { color: var(--clr-muted); font-weight: 500; font-size: 14px; margin-right: 6px; }
.clr-schedules .empty-schedule-box { padding: 30px 16px; }
.clr-schedules .empty-schedule-box svg { width: 70px; height: 70px; opacity: .5; }
.clr-schedules .lowas_tooltip { font-size: 12px; color: var(--clr-teal); margin-bottom: 8px; }

/* ---------------------------------------------- COURSE OUTLINE accordion --*/
.clr-accordion .accordion-item {
    border: 1px solid var(--clr-border);
    border-radius: var(--clr-radius) !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
}
.clr-accordion .accordion-button {
    background: #fff;
    color: var(--clr-navy-2);
    font-weight: 700;
    font-size: 16px;
    padding: 18px 20px;
    box-shadow: none;
}
.clr-accordion .accordion-button:not(.collapsed) { background: #fff; color: var(--clr-navy-2); }
.clr-accordion .accordion-button::after {
    background: none;
    content: "+";
    font-size: 24px;
    font-weight: 400;
    width: auto; height: auto;
    transform: none;
    line-height: 1;
    color: var(--clr-muted);
}
.clr-accordion .accordion-button:not(.collapsed)::after { content: "\2212"; transform: none; }
.clr-accordion .accordion-num { color: var(--clr-muted); font-weight: 700; margin-right: 12px; }
.clr-accordion .accordion-body { padding: 4px 20px 20px; color: var(--clr-text); font-size: 14.5px; }
.clr-outline-media { border-radius: 10px; overflow: hidden; }
.clr-outline-media img, .clr-outline-media iframe { width: 100%; border-radius: 10px; display: block; }

/* ------------------------------------------------------ WHY CHOOSE US -----*/
.clr-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.clr-why-card .clr-why-ico { width: 40px; height: 40px; color: var(--clr-teal); margin-bottom: 12px; }
.clr-why-card h5 { color: var(--clr-navy-2); font-weight: 800; font-size: 16px; margin-bottom: 8px; }
.clr-why-card p { color: var(--clr-text); font-size: 14px; line-height: 1.6; margin: 0; }

/* ----------------------------------------------------- BROCHURE banner ----*/
.clr-brochure {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--clr-navy);
    color: #fff;
    display: flex;
    align-items: center;
    min-height: 200px;
}
.clr-brochure .clr-brochure-body { padding: 30px 34px; max-width: 62%; position: relative; z-index: 1; }
.clr-brochure h2 { color: #fff; font-weight: 800; font-size: 24px; margin-bottom: 12px; }
.clr-brochure p { color: #d4dde2; font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.clr-brochure .clr-brochure-art {
    position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
    background: var(--clr-orange);
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
    display: grid; place-items: center;
}
.clr-brochure .clr-brochure-art img { max-width: 70%; height: auto; }

/* --------------------------------------------------- PREREQ comparison ----*/
.clr-prereq-compare { display: grid; grid-template-columns: 1fr 1fr; position: relative; border: 1px solid var(--clr-border); border-radius: 16px; overflow: hidden; }
.clr-prereq-col { padding: 26px 28px; }
.clr-prereq-col.left { background: #fff; }
.clr-prereq-col.right { background: var(--clr-navy); color: #fff; }
.clr-prereq-col h4 { font-weight: 800; font-size: 18px; margin-bottom: 18px; }
.clr-prereq-col.left h4 { color: var(--clr-navy-2); }
.clr-prereq-col.right h4 { color: #fff; }
.clr-prereq-col ul { list-style: none; padding: 0; margin: 0; }
.clr-prereq-col li { position: relative; padding-left: 28px; margin-bottom: 16px; font-size: 14px; line-height: 1.5; }
.clr-prereq-col li::before {
    content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 13px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='13' viewBox='0 0 18 13' fill='none'%3E%3Cpath d='M2 7l5 5L17 2' stroke='%23009AAD' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.clr-prereq-col li strong { font-weight: 800; }
.clr-prereq-or {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--clr-teal); color: #fff; font-weight: 800;
    display: grid; place-items: center; z-index: 2;
    box-shadow: 0 0 0 6px #fff;
}

/* --------------------------------------------------------- FAQ ------------*/
.clr-faq .accordion-item { border: 1px solid var(--clr-border); border-radius: var(--clr-radius) !important; margin-bottom: 12px; overflow: hidden; }
.clr-faq .accordion-button { font-weight: 700; font-size: 15px; color: var(--clr-navy-2); padding: 16px 20px; box-shadow: none; background: #fff; }
.clr-faq .accordion-button::after { background: none; content: "+"; font-size: 22px; color: var(--clr-muted); width: auto; height: auto; transform: none; }
.clr-faq .accordion-button:not(.collapsed)::after { content: "\2212"; }
.clr-faq .accordion-body { padding: 4px 20px 18px; font-size: 14px; color: var(--clr-text); }

/* ------------------------------------------ PMI feature tiles (static) -----*/
.clr-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.clr-tile {
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    font-size: 14px;
    color: var(--clr-navy-2);
    line-height: 1.5;
    background: #fff;
    display: grid; place-items: center; min-height: 96px;
}

/* ----------------------------------------------- CERT ASSESSMENTS ---------*/
.clr-assess { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.clr-assess .clr-assess-img img { width: 100%; border-radius: 10px; border: 1px solid var(--clr-border); }

/* --------------------------------------------- PREREQ + illustration ------*/
.clr-illus { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: center; }
.clr-illus img { width: 100%; height: auto; }

/* ---------------------------------------- POPULAR TRAININGS cards ---------*/
.clr-courses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.clr-course-card {
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    padding: 22px 18px;
    background: #fff;
    text-decoration: none;
    display: block;
    transition: box-shadow .2s, transform .2s;
}
.clr-course-card:hover { box-shadow: 0 10px 30px rgba(2,44,64,.08); transform: translateY(-2px); }
.clr-course-card .clr-course-badge { height: 56px; display: grid; place-items: center; margin-bottom: 14px; }
.clr-course-card .clr-course-badge img { max-height: 56px; width: auto; }
.clr-course-card .clr-course-tag { color: var(--clr-muted); font-size: 12px; margin-bottom: 4px; }
.clr-course-card .clr-course-name { color: var(--clr-navy-2); font-weight: 800; font-size: 15px; margin-bottom: 4px; line-height: 1.3; }
.clr-course-card .clr-course-meta { color: var(--clr-muted); font-size: 12px; }

/* ----------------------------------------------------- CITY pills ---------*/
.clr-cities { background: var(--clr-bg-soft); }
.clr-city-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.clr-city-pills a {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 9px 16px;
    color: var(--clr-navy-2);
    font-size: 13px;
    text-decoration: none;
    transition: all .2s;
}
.clr-city-pills a:hover { border-color: var(--clr-teal); color: var(--clr-teal); }

/* ================================================== STICKY CTA CARD ========*/
.clr-rail { position: relative; }
.clr-rail-sticky {
    position: sticky;
    top: var(--clr-sticky-top);
    z-index: 40;                 /* foreground: sits above the dark hero band */
    margin-top: -150px;          /* pull up so the card overlaps the dark hero */
}
.clr-cta-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(2, 44, 64, .12);
}

/* vertical sticky sidebar nav (moved out of the horizontal tab bar) */
.clr-side-nav {
    margin-top: 18px;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(2, 44, 64, .05);
    overflow: hidden;
}
.clr-side-nav ul { list-style: none; margin: 0; padding: 6px 0; }
.clr-side-nav li { margin: 0; }
.clr-side-nav a {
    display: block;
    padding: 11px 20px;
    color: var(--clr-navy-2);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background .2s, color .2s, border-color .2s;
}
.clr-side-nav a:hover { background: var(--clr-bg-soft); color: var(--clr-teal); }
.clr-side-nav a.active {
    background: var(--clr-bg-soft);
    color: var(--clr-teal);
    border-left-color: var(--clr-teal);
}
.clr-cta-media { display: block; }
.clr-cta-media img,
.clr-cta-media iframe { width: 100%; display: block; border: 0; }
.clr-cta-body { padding: 20px 22px 22px; }
.clr-cta-points { list-style: none; padding: 0; margin: 0 0 18px; }
.clr-cta-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--clr-navy-2);
    line-height: 1.4;
}
.clr-cta-points li::before {
    content: "";
    position: absolute; left: 0; top: 1px;
    width: 18px; height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23009AAD'/%3E%3Cpath d='M5 9.2l2.6 2.6L13 6.4' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.clr-cta-actions { display: flex; flex-direction: column; gap: 12px; }
.clr-cta-actions .clr-btn-primary {
    background: var(--clr-orange);
    color: #fff;
    font-weight: 700;
    border: 0;
    border-radius: 8px;
    padding: 13px 18px;
    text-align: center;
    text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .2s;
}
.clr-cta-actions .clr-btn-primary:hover { background: var(--clr-navy); }
.clr-cta-actions .clr-btn-link {
    color: var(--clr-navy-2);
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    letter-spacing: .04em;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.clr-cta-actions .clr-btn-link:hover { color: var(--clr-teal); text-decoration: underline; }

/* ===================================================== RESPONSIVE =========*/
@media (max-width: 991.98px) {
    .clr-hero { padding: 36px 0 28px; }
    .clr-hero h1 { font-size: 28px; }
    .clr-main { padding-right: 12px; }
    .clr-rail-sticky { position: static; margin-top: 22px; z-index: auto; }
    .clr-rail { margin-bottom: 10px; }
    .clr-feature-grid, .clr-why-grid, .clr-tiles { grid-template-columns: repeat(2, 1fr); }
    .clr-courses-grid { grid-template-columns: repeat(2, 1fr); }
    .clr-assess, .clr-illus { grid-template-columns: 1fr; }
    .clr-tabnav { top: 64px; }
    .clr-page { --clr-sticky-top: 72px; }
}
@media (max-width: 575.98px) {
    .clr-hero h1 { font-size: 24px; }
    .clr-feature-grid, .clr-why-grid, .clr-tiles, .clr-courses-grid { grid-template-columns: 1fr; }
    .clr-prereq-compare { grid-template-columns: 1fr; }
    .clr-prereq-or { left: 50%; top: 50%; }
    .clr-brochure { display: block; }
    .clr-brochure .clr-brochure-body { max-width: 100%; }
    .clr-brochure .clr-brochure-art { display: none; }
}
