@charset "UTF-8";
/* ==========================================================================
   pfeiffer-poles.ro — responsive rebuild of the 2010 layout
   Palette and proportions are taken from the original fileadmin template;
   everything below is mobile-first and fluid.
   ========================================================================== */

:root {
    --c-page:        #000000;
    --c-shell:       #545454;
    --c-band:        #4c4c4c;
    --c-panel:       #4f4e4e;
    --c-panel-alt:   #484848;
    --c-footer:      #404040;
    --c-line:        #7f7f7f;
    --c-line-soft:   #494949;

    --c-text:        #ffffff;
    --c-muted:       #d8d5d5;
    --c-dim:         #a9a5a5;

    --c-red:         #f92929;
    --c-red-dark:    #e41717;
    --c-red-light:   #ee2525;

    --c-bar:         #f4f2f3;
    --c-bar-edge:    #dad9d9;
    --c-bar-text:    #545454;
    --c-bar-text-2:  #404040;

    --shell-max:     1000px;
    --wrap-max:      905px;
    --gap:           clamp(1rem, 3vw, 1.75rem);
    --radius:        2px;

    --font:          "Segoe UI", Verdana, Arial, Helvetica, sans-serif;
    --fs-base:       clamp(0.875rem, 0.82rem + 0.22vw, 0.9375rem);
    --lh-base:       1.7;

    color-scheme: dark;
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html {
    background: var(--c-page);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--c-page);
    color: var(--c-text);
    font-family: var(--font);
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    overflow-wrap: break-word;
}

img, svg, video, iframe { max-width: 100%; }
img, video { height: auto; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; line-height: 1.3; font-weight: 700; }
p, ul, ol, dl, table, figure, blockquote { margin: 0 0 1em; }

a { color: var(--c-muted); text-decoration: none; }
a:hover, a:focus-visible { color: var(--c-text); text-decoration: underline; }

:focus-visible {
    outline: 2px solid var(--c-red);
    outline-offset: 2px;
}

button { font: inherit; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.skiplink {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: .6rem 1rem;
    background: var(--c-red);
    color: #fff;
    font-weight: 700;
}
.skiplink:focus { left: 0; }

/* -------------------------------------------------------------- layout -- */

.shell {
    max-width: var(--shell-max);
    margin-inline: auto;
    background: var(--c-shell);
    border-inline: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}

@media (max-width: 1040px) {
    .shell { border-inline: 0; }
}

.wrap {
    max-width: var(--wrap-max);
    margin-inline: auto;
    padding-inline: var(--gap);
}

.shell__main { display: block; padding-block: clamp(1.25rem, 4vw, 2rem) 0; }

/* ------------------------------------------------------------ masthead -- */

.masthead {
    position: relative;
    background: linear-gradient(180deg, #919191 0%, #6b6b6b 50%, #595959 75%, var(--c-shell) 100%);
    overflow: hidden;
}

.masthead__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem var(--gap);
    padding-block: clamp(.75rem, 2.5vw, 1.15rem);
    min-height: 86px;
}

.brand {
    display: block;
    text-decoration: none;
    line-height: 1;
    z-index: 1;
}

.brand__mark {
    display: block;
    width: clamp(170px, 26vw, 277px);
    height: auto;
}

.brand__claim {
    display: block;
    margin-top: .45rem;
    color: #efefef;
    font-size: clamp(.72rem, .62rem + .38vw, .95rem);
    letter-spacing: .09em;
    text-transform: uppercase;
    white-space: nowrap;
}

.masthead__tools {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-left: auto;
    z-index: 1;
}

/* the decorative lamp drawing from the original header */
.masthead__art {
    position: absolute;
    left: 46%;
    bottom: -14px;
    width: 195px;
    height: auto;
    opacity: .85;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 860px) {
    .masthead__art { display: none; }
}

/* language switch */
.langnav ul {
    display: flex;
    gap: .4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.langnav__item {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .45rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: #f0f0f0;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
}
.langnav__item:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.langnav__item.is-active { border-color: var(--c-red); color: #fff; }
.langnav__item.is-disabled { opacity: .45; }
.langnav .flag { display: block; border: 1px solid rgba(0,0,0,.35); }

/* search */
.searchbox { display: flex; }

.searchbox input {
    width: clamp(7rem, 18vw, 11rem);
    padding: .3rem .5rem;
    border: 1px solid #fff;
    border-right: 0;
    border-radius: var(--radius) 0 0 var(--radius);
    background: #fff;
    color: #333;
    font-size: .8125rem;
}

.searchbox button {
    padding: .3rem .7rem;
    border: 1px solid var(--c-red-dark);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: var(--c-red-dark);
    color: #fff;
    font-weight: 700;
    font-size: .8125rem;
    cursor: pointer;
}
.searchbox button:hover { background: var(--c-red-light); }

@media (max-width: 560px) {
    .masthead__inner { justify-content: flex-start; }
    .masthead__tools { width: 100%; margin-left: 0; justify-content: space-between; }
    .searchbox input { width: 100%; }
    .searchbox { flex: 1 1 auto; margin-left: .5rem; }
}

/* -------------------------------------------------------------- navbar -- */

.navbar {
    background: var(--c-bar);
    border-top: 3px solid var(--c-red);
    border-bottom: 1px solid #9a9899;
}

.navbar__inner { position: relative; padding-inline: 0; }

.navtoggle {
    display: none;
    align-items: center;
    gap: .6rem;
    width: 100%;
    padding: .85rem var(--gap);
    border: 0;
    background: transparent;
    color: var(--c-bar-text);
    font-size: .95rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.navtoggle__bars { position: relative; display: block; width: 22px; height: 2px; background: currentColor; }
.navtoggle__bars::before,
.navtoggle__bars::after {
    content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}
.navtoggle__bars::before { top: -7px; }
.navtoggle__bars::after  { top: 7px; }
.navtoggle[aria-expanded="true"] .navtoggle__bars { background: transparent; }
.navtoggle[aria-expanded="true"] .navtoggle__bars::before { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded="true"] .navtoggle__bars::after  { transform: translateY(-7px) rotate(-45deg); }

.mainnav {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mainnav__item { position: relative; flex: 1 1 auto; }

.mainnav__link {
    display: block;
    padding: .95rem 1.9rem .95rem 1.15rem;
    border-right: 1px solid var(--c-bar-edge);
    color: var(--c-bar-text);
    font-size: .9375rem;
    font-weight: 700;
    text-decoration: none;
}

.mainnav__item:last-child > .mainnav__link { border-right: 0; }
.mainnav__link:hover,
.mainnav__item:focus-within > .mainnav__link { color: var(--c-red); }
.mainnav__item.is-active > .mainnav__link { color: var(--c-red); }

/* the little caret the original drew with a background image */
.mainnav__item.has-sub > .mainnav__link::after {
    content: "";
    position: absolute;
    right: .85rem;
    top: 50%;
    width: 0; height: 0;
    margin-top: -2px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.mainnav__expand { display: none; }

.submenu {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    min-width: 15rem;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #f1f0f0;
    border: 1px solid var(--c-bar-edge);
    box-shadow: 0 6px 18px rgba(0,0,0,.45);
    visibility: hidden;
    opacity: 0;
    transition: opacity .12s ease;
}

.mainnav__item:hover > .submenu,
.mainnav__item:focus-within > .submenu { visibility: visible; opacity: 1; }

.submenu a {
    display: block;
    padding: .6rem 1.4rem;
    border-top: 1px solid var(--c-bar-edge);
    color: var(--c-bar-text-2);
    font-size: .8125rem;
    font-weight: 700;
    text-decoration: none;
}
.submenu li:first-child a { border-top: 0; }
.submenu a:hover { color: var(--c-red); }
.submenu li.is-active > a { color: var(--c-red); }

@media (max-width: 860px) {
    .navtoggle { display: flex; }

    .mainnav {
        display: none;
        flex-direction: column;
        border-top: 1px solid var(--c-bar-edge);
    }
    .mainnav.is-open { display: flex; }

    .mainnav__item { border-bottom: 1px solid var(--c-bar-edge); }
    .mainnav__item:last-child { border-bottom: 0; }

    .mainnav__link {
        padding: .85rem var(--gap);
        border-right: 0;
    }
    .mainnav__item.has-sub > .mainnav__link::after { content: none; }

    .mainnav__expand {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        width: 3.25rem;
        height: 3rem;
        border: 0;
        border-left: 1px solid var(--c-bar-edge);
        background: transparent;
        cursor: pointer;
    }
    .mainnav__expand span {
        display: block;
        width: 0; height: 0;
        margin: 0 auto;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid var(--c-bar-text);
        transition: transform .18s ease;
    }
    .mainnav__expand[aria-expanded="true"] span { transform: rotate(180deg); }

    .submenu {
        position: static;
        display: none;
        min-width: 0;
        border: 0;
        border-top: 1px solid var(--c-bar-edge);
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        background: #e8e7e7;
    }
    .mainnav__item:hover > .submenu,
    .mainnav__item:focus-within > .submenu { display: none; }
    .submenu.is-open,
    .mainnav__item:hover > .submenu.is-open { display: block; }
    .submenu a { padding-left: calc(var(--gap) + 1rem); }
}

/* --------------------------------------------------------- breadcrumbs -- */

.crumbs {
    background: var(--c-panel);
    border-bottom: 1px solid var(--c-line-soft);
    font-size: .75rem;
}

.crumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .1rem .45rem;
    margin: 0;
    padding-block: .45rem;
    list-style: none;
}

.crumbs li + li::before {
    content: "»";
    margin-right: .45rem;
    color: var(--c-dim);
}

.crumbs a { color: var(--c-muted); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current] { color: #fff; border-bottom: 1px solid var(--c-red); }

/* ------------------------------------------------------------- columns -- */

.wrap--split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.wrap--prose {
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 780px;
}

@media (min-width: 861px) {
    .wrap--split {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 1.75rem;
    }
}

.col-main { min-width: 0; }

/* section navigation */
.col-side { align-self: start; }

.subnav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .7rem .85rem;
    border: 0;
    border-bottom: 1px solid var(--c-line-soft);
    background: var(--c-panel);
    color: #fff;
    font-size: .8125rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.subnav-toggle__chevron {
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform .18s ease;
}
.subnav-toggle[aria-expanded="false"] .subnav-toggle__chevron { transform: rotate(-90deg); }

.col-side__body[hidden] { display: none; }

.subnav { margin: 0; padding: 0; list-style: none; }

.subnav a {
    display: block;
    padding: .65rem .8rem .65rem 1.35rem;
    border-bottom: 1px solid var(--c-line-soft);
    background: var(--c-panel);
    color: #eee;
    font-size: .8125rem;
    line-height: 1.45;
    text-decoration: none;
}

.subnav--l1 > li > a::before {
    content: "";
    position: absolute;
    left: .5rem;
    margin-top: .45em;
    width: 0; height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid var(--c-red);
}
.subnav--l1 > li { position: relative; }

.subnav a:hover { color: #fff; background: #5a5959; }
.subnav li.is-current > a { color: #fff; background: var(--c-footer); }
.subnav li.is-active > a { color: #fff; }

.subnav--l2 a {
    padding: .4rem .8rem .4rem 1.9rem;
    color: var(--c-dim);
    font-size: .75rem;
}
.subnav--l3 a { padding-left: 2.6rem; }

@media (min-width: 861px) {
    .subnav-toggle { display: none; }
    .col-side__body[hidden] { display: block; }
}

/* ------------------------------------------------------------- content -- */

.col-main h1, .wrap--prose h1, .home-top h1 {
    font-size: clamp(1.15rem, 1rem + .7vw, 1.4rem);
    color: #fff;
}

.col-main h2, .wrap--prose h2, .home-top h2 {
    font-size: clamp(1rem, .93rem + .35vw, 1.1rem);
    color: #fff;
}

.col-main h3, .wrap--prose h3 { font-size: 1rem; color: var(--c-red); }

.col-main p, .wrap--prose p, .home-top p { color: var(--c-text); }

.ce-bodytext ul,
.ce-bodytext ol {
    padding-left: 1.15rem;
    list-style: disc;
}
.ce-bodytext ol { list-style: decimal; }
.ce-bodytext li { margin-bottom: .25rem; }

.col-main a, .wrap--prose a, .home-top a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid var(--c-red);
}
.col-main a:hover, .wrap--prose a:hover, .home-top a:hover {
    border-bottom-style: dotted;
}

.frame { margin-bottom: clamp(1.25rem, 3vw, 1.85rem); }
.frame:last-child { margin-bottom: 0; }

/* images inside content */
.ce-image img, .ce-textpic img, .ce-gallery img {
    height: auto;
    border: 1px solid #3d3d3d;
}

.ce-gallery { margin-bottom: 1rem; }

.ce-gallery .ce-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.ce-gallery .ce-column { flex: 1 1 12rem; min-width: 0; }

@media (min-width: 700px) {
    .ce-intext.ce-right .ce-gallery { float: right; margin: 0 0 1rem 1.25rem; max-width: 45%; }
    .ce-intext.ce-left  .ce-gallery { float: left;  margin: 0 1.25rem 1rem 0; max-width: 45%; }
}

.ce-above .ce-gallery { margin-bottom: 1rem; }
.ce-below .ce-gallery { margin-top: 1rem; }

figcaption, .ce-caption {
    margin-top: .35rem;
    color: var(--c-muted);
    font-size: .75rem;
    font-style: normal;
}

/* tables */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    border: 1px solid var(--c-line-soft);
}

.ce-table {
    width: 100%;
    min-width: 32rem;
    border-collapse: collapse;
    background: var(--c-panel);
    font-size: .8125rem;
}

.ce-table caption {
    padding: .6rem .75rem;
    background: var(--c-footer);
    color: #fff;
    font-weight: 700;
    text-align: left;
}

.ce-table th,
.ce-table td {
    padding: .55rem .6rem;
    border-top: 1px solid #6d6c6c;
    text-align: center;
    vertical-align: middle;
}

.ce-table th {
    background: var(--c-footer);
    color: #fff;
    font-weight: 700;
    border-top: 0;
    position: sticky;
    top: 0;
}

.ce-table td:first-child, .ce-table th:first-child { text-align: left; }
.ce-table tbody tr:nth-child(even) { background: var(--c-panel-alt); }
.ce-table a { color: #fff; border-bottom: 1px solid var(--c-red); }

/* file lists (data sheets) */
.ce-uploads { margin: 0 0 1rem; padding: 0; list-style: none; }
.ce-uploads li {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    padding: .45rem 0;
    border-bottom: 1px solid var(--c-line-soft);
}
.ce-uploads .ce-uploads-fileName { font-weight: 700; }

/* buttons */
.btn {
    display: inline-block;
    padding: .5rem 1rem;
    border: 0;
    border-radius: var(--radius);
    background: var(--c-red-dark);
    color: #fff !important;
    font-size: .8125rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.btn:hover { background: var(--c-red-light); border-bottom: 0 !important; }

.btn--ghost {
    background: transparent;
    border: 1px solid #8b8b8b;
    color: #fff !important;
}
.btn--ghost:hover { background: #5f5f5f; }

.linkish {
    padding: 0;
    border: 0;
    background: none;
    color: var(--c-red);
    font: inherit;
    text-decoration: none;
    cursor: pointer;
}
.linkish:hover { text-decoration: underline; }

/* ---------------------------------------------------------------- home -- */

.home-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
    padding-bottom: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 861px) {
    .home-top { grid-template-columns: minmax(0, 1fr) 300px; gap: 1.65rem; }
}

.home-top__aside img { display: block; width: 100%; border: 1px solid #3d3d3d; }

.band {
    background: var(--c-band);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    padding-block: clamp(1.25rem, 3.5vw, 1.75rem);
}

.band h2 { margin-bottom: 1rem; }

.teasers .ce-gallery .ce-row { gap: 0; }

.teasers > .frame,
.teasers .ce-textpic { margin-bottom: 0; }

.teasers {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
}

@media (min-width: 600px) {
    .teasers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 861px) {
    .teasers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.teasers .frame {
    background: var(--c-panel);
    border: 1px solid #6a6a6a;
    padding: 4px;
}

.teasers .frame img { display: block; width: 100%; border: 0; }

.teasers .frame p,
.teasers .frame .ce-bodytext { margin: 0; padding: .55rem .5rem .45rem; }

.teasers .frame .ce-bodytext a {
    display: block;
    position: relative;
    padding-right: 1.2rem;
    color: #fff;
    border-bottom: 0;
    font-size: .8125rem;
}
.teasers .frame .ce-bodytext a::after {
    content: "\276F";
    position: absolute;
    right: .2rem;
    top: 0;
    color: var(--c-red);
}
.teasers .frame:hover { border-color: var(--c-red); }
.teasers .frame:hover .ce-bodytext a { color: var(--c-red); }

/* keep the cards the same height with the label pinned to the bottom */
.teasers > .frame,
.col-main > .frame-layout-20 { display: flex; flex-direction: column; }
.teasers .frame .ce-bodytext,
.frame-layout-20 .ce-bodytext { margin-top: auto; }
.teasers .frame img,
.frame-layout-20 img { aspect-ratio: 4 / 3; object-fit: cover; }

/* the teaser heading sits above the grid, so pull it out of the grid flow */
.teasers > h2:first-child { grid-column: 1 / -1; margin-bottom: 0; }

/* -------------------------------------------------------------- footer -- */

.footer {
    background: var(--c-footer);
    border-top: 1px solid var(--c-line);
    font-size: .6875rem;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem 1rem;
    padding-block: .95rem;
}

.footer p { margin: 0; }
.footer__legal { color: #fff; }

.footer__menu {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__menu a, .footer .linkish {
    color: var(--c-red);
    font-size: .6875rem;
    text-decoration: none;
    border-bottom: 0;
}
.footer__menu a:hover, .footer .linkish:hover { text-decoration: underline; }

.footer__by { margin-left: auto; }
.footer__by a { color: var(--c-red); text-decoration: none; border-bottom: 0; }
.footer__by a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .footer__by { margin-left: 0; }
}

/* ------------------------------------------------------------- consent -- */

.consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 90;
    padding: var(--gap);
    background: rgba(20, 20, 20, .97);
    border-top: 3px solid var(--c-red);
    box-shadow: 0 -8px 28px rgba(0,0,0,.6);
}
.consent[hidden] { display: none; }

.consent__box {
    max-width: var(--wrap-max);
    margin-inline: auto;
}

.consent__title { margin-bottom: .35rem; font-size: 1rem; }
.consent__text  { margin-bottom: .75rem; font-size: .8125rem; line-height: 1.6; }

.consent__cats { margin: 0 0 .9rem; padding: 0; list-style: none; display: grid; gap: .4rem; }
.consent__cats label { display: flex; gap: .55rem; align-items: flex-start; font-size: .8125rem; }
.consent__cats b { display: block; }
.consent__cats input { margin-top: .3rem; accent-color: var(--c-red); }

.consent__actions { display: flex; flex-wrap: wrap; gap: .5rem; }

.consent__links { margin: .8rem 0 0; display: flex; gap: 1rem; font-size: .75rem; }
.consent__links a { color: var(--c-red); text-decoration: none; }
.consent__links a:hover { text-decoration: underline; }

@media (min-width: 700px) {
    .consent__cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------- forms -- */

.frame-type-form_formframework input[type="text"],
.frame-type-form_formframework input[type="email"],
.frame-type-form_formframework input[type="tel"],
.frame-type-form_formframework textarea,
.frame-type-form_formframework select {
    width: 100%;
    padding: .5rem .6rem;
    border: 1px solid #7c7c7c;
    border-radius: var(--radius);
    background: #f7f7f7;
    color: #222;
    font: inherit;
}

.frame-type-form_formframework textarea { min-height: 9rem; resize: vertical; }

.frame-type-form_formframework .form-group,
.frame-type-form_formframework .input { margin-bottom: .9rem; }

.frame-type-form_formframework label { display: block; margin-bottom: .25rem; font-size: .8125rem; font-weight: 700; }

.frame-type-form_formframework .btn,
.frame-type-form_formframework button[type="submit"],
.frame-type-form_formframework input[type="submit"] {
    padding: .55rem 1.2rem;
    border: 0;
    border-radius: var(--radius);
    background: var(--c-red-dark);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.frame-type-form_formframework .help-block,
.frame-type-form_formframework .error {
    display: block;
    margin-top: .25rem;
    font-size: .75rem;
    color: #ffb4b4;
}

/* honeypot must stay in the DOM but out of sight */
.frame-type-form_formframework .hp-field { position: absolute; left: -9999px; }

/* ------------------------------------------------------- search result -- */

/* the section column is optional; without it the main column must span */
@media (min-width: 861px) {
    .wrap--split > .col-main:only-child { grid-column: 1 / -1; }
}

.tx-indexedsearch-searchbox fieldset {
    margin: 0 0 1rem;
    padding: 1rem;
    border: 1px solid var(--c-line-soft);
    background: var(--c-panel);
}
.tx-indexedsearch-searchbox legend { padding: 0 .4rem; font-weight: 700; }
.tx-indexedsearch-searchbox label { display: block; margin-bottom: .25rem; font-size: .8125rem; }
.tx-indexedsearch-searchbox input[type="search"],
.tx-indexedsearch-searchbox input[type="text"] {
    width: min(100%, 22rem);
    padding: .45rem .6rem;
    border: 1px solid #7c7c7c;
    border-radius: var(--radius);
    background: #f7f7f7;
    color: #222;
    font: inherit;
}
.tx-indexedsearch-searchbox input[type="submit"] {
    margin-top: .5rem;
    padding: .45rem 1.1rem;
    border: 0;
    border-radius: var(--radius);
    background: var(--c-red-dark);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.tx-indexedsearch-whatis { margin-bottom: 1rem; font-size: .8125rem; color: var(--c-muted); }
.tx-indexedsearch-sw { color: #fff; font-weight: 700; }

.tx-indexedsearch-res {
    padding-block: 1rem;
    border-top: 1px solid var(--c-line-soft);
}
.tx-indexedsearch-title { margin: 0 0 .35rem; font-size: 1rem; }
.tx-indexedsearch-percent { margin-left: .4rem; color: var(--c-dim); font-size: .75rem; font-weight: 400; }
.tx-indexedsearch-description { margin-bottom: .4rem; font-size: .8125rem; }
.tx-indexedsearch-redMarkup, .tx-indexedsearch-redMarkup strong { color: var(--c-red); }

.tx-indexedsearch-info {
    display: flex;
    flex-wrap: wrap;
    gap: .15rem .9rem;
    margin: 0;
    color: var(--c-dim);
    font-size: .6875rem;
}
.tx-indexedsearch-info dt { font-weight: 400; }
.tx-indexedsearch-info dt::after { content: ":"; }
.tx-indexedsearch-info dd { margin: 0 .6rem 0 0; color: var(--c-muted); }

.tx-indexedsearch-browsebox ul {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}
.tx-indexedsearch-browsebox li a,
.tx-indexedsearch-browsebox li span {
    display: block;
    padding: .3rem .6rem;
    border: 1px solid var(--c-line-soft);
    background: var(--c-panel);
    font-size: .75rem;
}
.tx-indexedsearch-browsebox li.tx-indexedsearch-browselist-currentPage span { border-color: var(--c-red); color: #fff; }

/* --------------------------------------------------------------- print -- */

@media print {
    body { background: #fff; color: #000; }
    .shell { background: #fff; border: 0; max-width: none; }
    .navbar, .masthead__tools, .col-side, .consent, .footer__by, .skiplink { display: none !important; }
    .col-main a, .wrap--prose a { color: #000; border: 0; }
    .ce-table { background: #fff; color: #000; }
    .ce-table th { background: #eee; color: #000; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

/* ==========================================================================
   Content element variants
   ========================================================================== */

/* --- main column becomes a grid so product cards can flow side by side --- */

/* Flexbox rather than grid: the card frames sit among full-width frames, and
   flex wrapping behaves predictably when the column width is indefinite. */
.col-main,
.wrap--prose {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: clamp(1.25rem, 3vw, 1.85rem) 1rem;
}

.col-main > .frame,
.wrap--prose > .frame {
    flex: 1 1 100%;
    min-width: 0;
    margin-bottom: 0;
}

/* layout 20 = "product card": image on top, linked label underneath */
.col-main > .frame-layout-20 {
    flex: 1 1 100%;
    background: var(--c-panel);
    border: 1px solid #6a6a6a;
    padding: 4px;
}

@media (min-width: 520px) {
    .col-main > .frame-layout-20 {
        flex: 1 1 calc(50% - .5rem);
        max-width: calc(50% - .5rem);
    }
}
@media (min-width: 861px) {
    .col-main > .frame-layout-20 {
        flex: 1 1 calc(33.333% - .67rem);
        max-width: calc(33.333% - .67rem);
    }
}
.frame-layout-20 .ce-gallery { margin-bottom: 0; }
.frame-layout-20 img { display: block; width: 100%; border: 0; }
.frame-layout-20 .ce-bodytext { padding: .5rem .45rem .35rem; }
.frame-layout-20 p { margin: 0; font-size: .8125rem; }
.frame-layout-20 a { display: block; color: #fff; border-bottom: 0; }
.frame-layout-20:hover { border-color: var(--c-red); }
.frame-layout-20:hover a { color: var(--c-red); }

/* --------------------------------------------------------- gallery slider */

.frame-layout-10 .ce-gallery { position: relative; }

.frame-layout-10 .ce-gallery .ce-inner {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.frame-layout-10 .ce-gallery .ce-inner::-webkit-scrollbar { display: none; }

.frame-layout-10 .ce-gallery .ce-row {
    flex: 0 0 100%;
    scroll-snap-align: center;
    margin: 0;
}

.frame-layout-10 .ce-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid #3d3d3d;
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: rgba(20, 20, 20, .65);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}
.slider-btn:hover { background: var(--c-red-dark); }
.slider-btn--prev { left: .4rem; }
.slider-btn--next { right: .4rem; }
.slider-btn[disabled] { opacity: .3; cursor: default; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: .35rem;
    margin-top: .5rem;
}
.slider-dots button {
    width: .5rem;
    height: .5rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #8b8b8b;
    cursor: pointer;
}
.slider-dots button[aria-current="true"] { background: var(--c-red); }

/* -------------------------------------------------------- product tables */

.ce-table--products { min-width: 34rem; }

.ce-table__units td {
    padding-top: .15rem;
    padding-bottom: .3rem;
    background: var(--c-footer);
    color: var(--c-muted);
    font-size: .6875rem;
    border-top: 0;
}

.ce-table__section th {
    position: static;
    background: #5c5b5b;
    color: #fff;
    text-align: left;
    font-size: .8125rem;
    letter-spacing: .02em;
    border-top: 1px solid #6d6c6c;
}

.ce-table--products td:first-child { white-space: nowrap; font-weight: 700; }

/* ------------------------------------------------------- click-to-load map */

.mapbox {
    background: var(--c-panel);
    border: 1px solid var(--c-line-soft);
    padding: 1rem;
    margin-bottom: 1rem;
}
.mapbox__note { font-size: .75rem; color: var(--c-muted); }
.mapbox iframe {
    display: block;
    width: 100%;
    height: clamp(240px, 45vw, 380px);
    border: 0;
}
.mapbox p:last-child { margin-bottom: 0; }
.mapbox a { color: #fff; }

/* route planning next to the map — a phone wants a link, not an iframe */
.route-links {
    list-style: none;
    margin: -.5rem 0 1rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .3rem 1.1rem;
    font-size: .8125rem;
}
.route-links li { margin: 0; }

/* postal address block */
.adr { margin-bottom: .55rem; }

/* ------------------------------------------------------------- page title --
   Every page now carries its title as the single H1; content headings start
   at H2. In the flex columns the heading has to claim a full row of its own. */
.page-title { margin-bottom: .9rem; }
.col-main > .page-title,
.wrap--prose > .page-title {
    flex: 1 1 100%;
    min-width: 0;
    margin-bottom: 0;
}
.home-top__intro .page-title { margin-bottom: .75rem; }

/* ------------------------------------------------ subpage list (news etc.) */

.entry-list {
    display: grid;
    gap: .6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.entry-list a {
    display: block;
    padding: .8rem 1rem;
    background: var(--c-panel);
    border: 1px solid var(--c-line-soft);
    border-left: 3px solid var(--c-red);
    color: #fff;
    text-decoration: none;
}
.entry-list a:hover { background: #5a5959; border-color: var(--c-line-soft); border-left-color: var(--c-red); }
.entry-list__title { display: block; font-weight: 700; }
.entry-list__abstract { display: block; margin-top: .2rem; color: var(--c-muted); font-size: .8125rem; }

/* ------------------------------------------------------------- form frame */

.frame-type-form_formframework {
    background: var(--c-panel);
    border: 1px solid var(--c-line-soft);
    padding: clamp(1rem, 3vw, 1.5rem);
}

/* -------------------------------------------------------- teaser headline */

.teasers > .frame-type-header { grid-column: 1 / -1; }
.teasers > .frame { margin-bottom: 0; }
.teasers > .frame-type-header h2 { margin: 0; }
