/* ══════════════════════════════════════════════════════════════
   Parafia Church Template — Churchly-inspired Design
   ══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;800&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --c-red:      #df3840;
    --c-red-dk:   #c0202b;
    --c-dark:     #1d2a3a;
    --c-darker:   #111827;
    --c-text:     #555555;
    --c-heading:  #222222;
    --c-border:   #e0e0e0;
    --c-bg:       #f7f7f7;
    --c-white:    #ffffff;
    --c-muted:    #888888;
    --radius:     0;
    --container:  1200px;
    --font-sans:  'Raleway', 'Segoe UI', Arial, sans-serif;
    --font-serif: 'Merriweather', Georgia, serif;
}

/* ── Bootstrap overrides — restore our design ──────────────── */
/* Bootstrap sets its own container max-width; we override */
.container, .container-fluid { max-width: none; padding: 0; }

/* sr-only (Bootstrap 3/4) → visually-hidden equivalent for Bootstrap 5 */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.75;
    color: var(--c-text);
    background: var(--c-white);
    margin: 0;
    padding: 0;
}

img { max-width: 100%; height: auto; }

a { color: var(--c-red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-red-dk); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    color: var(--c-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
}

/* ── Container ─────────────────────────────────────────────── */
.parish-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ══════════════════════════════════════════════════════════════
   TOPBAR
   ══════════════════════════════════════════════════════════════ */
#parish-topbar {
    background: var(--c-white);
    border-bottom: 1px solid #e8e8e8;
    padding: 14px 0;
    position: relative;
    z-index: 100;
}

.parish-topbar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

/* Left — info modules */
.parish-topbar__left {
    display: flex;
    align-items: center;
}

/* Center — logo */
.parish-topbar__logo {
    text-align: center;
}

.parish-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.parish-logo-name {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--c-dark);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.parish-logo-tagline {
    font-size: 10px;
    font-weight: 600;
    color: var(--c-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 2px;
}

.parish-logo-img {
    max-height: 60px;
    width: auto;
}

/* Right — CTA + toggle */
.parish-topbar__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* Facebook link in topbar */
.parish-topbar__fb {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #1877f2;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
}

.parish-topbar__fb:hover { background: #1251a3; }

.parish-topbar__fb .fa-facebook-f { font-size: 14px; }

@media (max-width: 600px) {
    .parish-topbar__fb-label { display: none; }
}

/* Header info widget — top1 */
.church-header-info {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.chi-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chi-icon {
    font-size: 1.5rem;
    color: var(--c-red);
    flex-shrink: 0;
}

.chi-text {
    line-height: 1.3;
    color: #444;
    font-size: 13px;
}

.chi-text strong { color: var(--c-dark); font-size: 13px; }
.chi-text small  { color: var(--c-muted); font-size: 11px; }

/* Donate button — top2 */
.church-donate-btn {
    display: inline-block;
    background: var(--c-dark);
    color: var(--c-white) !important;
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: 0 3px 0 #0c141e;
    transition: background .2s;
    white-space: nowrap;
}

.church-donate-btn:hover {
    background: var(--c-red) !important;
    color: var(--c-white) !important;
}

.church-donate-btn .fas,
.church-donate-btn .fa { margin-right: 6px; }

/* Mobile hamburger */
.parish-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 8px;
}

.parish-nav__burger {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--c-dark);
    transition: all .25s;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
#parish-navbar {
    background: var(--c-dark);
    border-bottom: 3px solid var(--c-red);
    position: relative;
    z-index: 200;
}

/* ── Parish nav list ───────────────────────────────────────── */
.parish-navbar__menu {
    display: flex;
    justify-content: center;
}

ul.parish-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.parish-nav__item {
    position: relative;
}

.parish-nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 16px 16px;
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 700;
    color: #cccccc !important;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    text-decoration: none !important;
    border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}

.parish-nav__item:hover > .parish-nav__link,
.parish-nav__item.active > .parish-nav__link {
    color: var(--c-white) !important;
    border-bottom-color: var(--c-red);
}

.parish-nav__caret {
    font-size: 10px;
    opacity: .7;
    transition: transform .2s;
}

.parish-nav__item:hover > .parish-nav__link .parish-nav__caret {
    transform: rotate(180deg);
}

/* ── Dropdown ──────────────────────────────────────────────── */
.parish-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    background: var(--c-dark);
    border-top: 2px solid var(--c-red);
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    pointer-events: none;
}

.parish-nav__item.has-dropdown:hover > .parish-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.parish-nav__dropdown .parish-nav__item { width: 100%; }

.parish-nav__dropdown .parish-nav__link {
    padding: 9px 18px;
    font-size: 12px;
    border-bottom: none;
    color: #bbbbbb !important;
}

.parish-nav__dropdown .parish-nav__item:hover > .parish-nav__link,
.parish-nav__dropdown .parish-nav__item.active > .parish-nav__link {
    color: var(--c-white) !important;
    background: rgba(255,255,255,.06);
    border-bottom: none;
}

/* ══════════════════════════════════════════════════════════════
   SLIDER
   ══════════════════════════════════════════════════════════════ */
#parish-slider {
    line-height: 0;
    overflow: hidden;
}

#parish-slider .sp-module { line-height: 0; }
#parish-slider .sp-module-content { line-height: 0; }

/* Bootstrap carousel tweaks — fixed height prevents jump between panoramic and portrait slides */
#parish-slider .carousel { line-height: 0; }

#parish-slider .carousel-inner {
    height: 480px;
    overflow: hidden;
}

#parish-slider .carousel-item {
    height: 480px;
    overflow: hidden;
}

#parish-slider .carousel-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: brightness(.7);
    display: block;
    line-height: 0;
}

#parish-slider .carousel-caption {
    bottom: 18%;
    left: 7%;
    right: auto;
    text-align: left;
    max-width: 48%;
    padding: 0;
    line-height: 1.2;
}

#parish-slider .carousel-caption-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.9rem;
    font-weight: 800;
    background: var(--c-red);
    color: var(--c-white);
    padding: 12px 24px;
    margin: 0;
    letter-spacing: .5px;
    line-height: 1.2;
    text-shadow: none;
}

#parish-slider .carousel-caption-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 600;
    background: rgba(192,32,43,.92);
    color: var(--c-white);
    padding: 9px 24px;
    margin: 0;
    letter-spacing: .5px;
    line-height: 1.4;
}

#parish-slider .carousel-control-prev,
#parish-slider .carousel-control-next {
    width: 48px;
    opacity: 1;
}

#parish-slider .carousel-control-prev-icon,
#parish-slider .carousel-control-next-icon {
    background-color: rgba(0,0,0,.4);
    padding: 1.4rem .9rem;
    width: 44px;
    height: 52px;
    border-radius: 0;
    transition: background-color .2s;
}

#parish-slider .carousel-control-prev:hover .carousel-control-prev-icon,
#parish-slider .carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--c-red);
}

#parish-slider .carousel-indicators [data-bs-slide-to] {
    background-color: rgba(255,255,255,.45);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
}

#parish-slider .carousel-indicators .active {
    background-color: var(--c-red);
}

/* ══════════════════════════════════════════════════════════════
   QUOTE BAND
   ══════════════════════════════════════════════════════════════ */
#parish-quote {
    background: var(--c-darker);
    padding: 36px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

/* parish-scripture is the class on the module content div */
.parish-scripture {
    text-align: center;
    padding: 0;
    margin: 0;
}

.parish-scripture p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: #e0e0e0;
    margin: 0 0 10px;
    line-height: 1.8;
}

.parish-scripture cite {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: .8rem;
    color: var(--c-red);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* ══════════════════════════════════════════════════════════════
   FEATURE BOXES
   ══════════════════════════════════════════════════════════════ */
#parish-features {
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
}

.parish-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.parish-features__col {
    border-right: 1px solid var(--c-border);
    display: flex;
    align-items: stretch;
}

.parish-features__col > div {
    display: flex;
    width: 100%;
}

.parish-features__col:last-child { border-right: none; }

.parish-feature-box {
    padding: 32px 24px;
    text-align: center;
    background: var(--c-white);
    transition: background .2s;
    width: 100%;
}

.parish-feature-box:hover { background: #fafafa; }

.parish-feature-icon {
    font-size: 2.6rem;
    color: var(--c-red);
    margin-bottom: 14px;
}

.parish-feature-title {
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 700;
    color: var(--c-heading);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.parish-feature-text {
    font-size: .85rem;
    color: #777;
    line-height: 1.75;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════════════════════════════ */
#parish-main {
    padding: 40px 0 50px;
    background: var(--c-bg);
}

.parish-main__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.parish-main__layout.has-sidebar {
    grid-template-columns: 1fr 300px;
}

/* ── Article cards (3-column, cols-3 class from Joomla) ─────── */
.row.row-1.cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Override Bootstrap row margin */
.row.row-1.cols-3 > .col-lg-4 {
    width: auto !important;
    padding: 0 !important;
    float: none !important;
    flex: none !important;
    max-width: none !important;
}

/* ── Featured articles card grid ───────────────────────────── */
.parish-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 0;
}

.parish-articles-grid.cols-1 { grid-template-columns: 1fr; }
.parish-articles-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.parish-article-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.parish-article-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.10);
    transform: translateY(-3px);
}

.parish-card__img-link { display: block; text-decoration: none; }

.parish-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f0f0f0;
}

.parish-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .35s;
}

.parish-article-card:hover .parish-card__img img { transform: scale(1.04); }

.parish-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
}

.parish-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.parish-card__date {
    font-size: 11px;
    color: #999;
    display: block;
    margin-bottom: 8px;
}

.parish-card__date .fa-calendar-alt {
    color: var(--c-red);
    margin-right: 4px;
}

.parish-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
    color: var(--c-heading);
}

.parish-card__title a {
    color: inherit;
    text-decoration: none;
}

.parish-card__title a:hover { color: var(--c-red); }

.parish-card__text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--c-text);
    flex: 1;
    margin-bottom: 14px;
}

/* Zdjęcia w treści artykułów i modułów — bez opływania, zawsze ponad tekstem */
.parish-card__text img,
.parish-card__body img,
.com-content-article__body img,
.item-content img,
.parish-footer__widget img,
#parish-footer img {
    float: none !important;
    display: block;
    max-width: 100%;
    margin: 0 0 12px 0;
}

.parish-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: auto;
}

.parish-card__more:hover { color: var(--c-dark); }

@media (max-width: 900px) {
    .parish-articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .parish-articles-grid { grid-template-columns: 1fr; }
}

.article.blog-items.cols-3 {
    background: var(--c-white);
    border-top: 3px solid var(--c-red);
    border-left: 1px solid var(--c-border);
    border-right: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article.blog-items.cols-3 .item-content { flex: 1; }

.article.blog-items.cols-3 .article-header h4 {
    font-size: .95rem !important;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.45;
}

.article.blog-items.cols-3 .article-header h4 a {
    color: var(--c-heading) !important;
}

.article.blog-items.cols-3 .article-header h4 a:hover {
    color: var(--c-red) !important;
}

/* Truncate card text */
.article.blog-items.cols-3 .articleBody > *:not(.article-header) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Full article view ─────────────────────────────────────── */
.com-content-article,
.com-content-category-blog {
    background: var(--c-white);
    padding: 28px;
    border: 1px solid var(--c-border);
}

/* ── Article titles ────────────────────────────────────────── */
h1.page-header, .com-content-article__title h1,
h2.article-title, h2.item-title,
.entry-title, .article-title {
    color: var(--c-heading);
    font-family: var(--font-sans);
    font-weight: 700;
}

.com-content-article__title h1 {
    font-size: 1.6rem;
    border-bottom: 2px solid var(--c-border);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* ── Page header ───────────────────────────────────────────── */
.page-header {
    border-bottom: 2px solid var(--c-border);
    margin-bottom: 25px;
    padding-bottom: 12px;
}

.page-header h1, .page-header h2 {
    font-size: 1.3rem;
    color: var(--c-heading);
    margin: 0;
}

.page-header h1::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--c-red);
    margin-top: 8px;
}

/* ── Readmore / buttons ────────────────────────────────────── */
a.readmore, .read-more a,
.btn.btn-primary, .btn-primary {
    display: inline-block;
    background: var(--c-red) !important;
    color: var(--c-white) !important;
    border-color: var(--c-red) !important;
    border-radius: 0 !important;
    padding: 7px 18px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background .2s;
    text-decoration: none;
}

a.readmore:hover, .btn-primary:hover {
    background: var(--c-red-dk) !important;
    border-color: var(--c-red-dk) !important;
}

/* ── Article meta ──────────────────────────────────────────── */
.com-content-article__info,
.article-info, .entry-meta {
    font-size: .8rem;
    color: #999;
    margin-bottom: 14px;
}

/* ── Article images ────────────────────────────────────────── */
.article-introimg img, .entry-image img, .item-image img {
    width: 100%;
    border-radius: 0;
    margin-bottom: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

/* ── Badges ────────────────────────────────────────────────── */
.badge.bg-danger, .featured-article-badge {
    background: var(--c-red) !important;
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Sidebar ───────────────────────────────────────────────── */
.parish-main__sidebar .moduletable,
.parish-main__sidebar .sp-moduletable {
    margin-bottom: 24px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-top: 3px solid var(--c-red);
}

.parish-main__sidebar .moduletable-title,
.parish-main__sidebar h3 {
    font-family: var(--font-sans);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-heading);
    padding: 12px 18px;
    margin: 0;
    border-bottom: 1px solid var(--c-border);
}

.parish-main__sidebar .sp-module-content {
    padding: 16px 18px;
    font-size: 13px;
}

/* ── Joomla messages ───────────────────────────────────────── */
.alert { border-radius: 0; }

/* ── Pagination ────────────────────────────────────────────── */
.com-content-category-blog__navigation {
    margin-top: 2rem;
}

.pagination {
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.pagination .page-link {
    color: var(--c-red);
    border-radius: 3px !important;
    min-width: 38px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
}

.pagination .page-link:hover {
    color: var(--c-white);
    background: var(--c-red);
    border-color: var(--c-red);
}

.pagination .page-item.active .page-link {
    background: var(--c-red);
    border-color: var(--c-red);
    color: var(--c-white);
}

.pagination .page-item.disabled .page-link {
    opacity: .4;
}

/* Ukryj tekst "Start / Poprzednia / Następna / Koniec" — zostaw tylko strzałki */
.pagination .page-item:first-child .page-link span,
.pagination .page-item:nth-child(2) .page-link span,
.pagination .page-item:nth-last-child(2) .page-link span,
.pagination .page-item:last-child .page-link span {
    display: none;
}

/* Strzałki jako znaki Unicode */
.pagination .page-item:first-child .page-link::before       { content: '«'; }
.pagination .page-item:nth-child(2) .page-link::before      { content: '‹'; }
.pagination .page-item:nth-last-child(2) .page-link::before { content: '›'; }
.pagination .page-item:last-child .page-link::before        { content: '»'; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
    background: #f0f0f0;
    padding: 8px 14px;
    border-radius: 0;
    font-size: 12px;
    margin-bottom: 18px;
}

.breadcrumb a { color: var(--c-red); }

/* ── Forms ─────────────────────────────────────────────────── */
.form-control:focus {
    border-color: var(--c-red);
    box-shadow: 0 0 0 3px rgba(223,56,64,.15);
}

.btn-outline-primary {
    color: var(--c-red);
    border-color: var(--c-red);
    border-radius: 0;
}

.btn-outline-primary:hover {
    background: var(--c-red);
    border-color: var(--c-red);
}

/* ══════════════════════════════════════════════════════════════
   BOTTOM WIDGETS
   ══════════════════════════════════════════════════════════════ */
#parish-bottom {
    background: var(--c-darker);
    padding: 50px 0;
    border-top: 3px solid var(--c-red);
}

.parish-bottom__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Module wrapper in bottom */
#parish-bottom .moduletable { margin: 0; }

/* Module title */
#parish-bottom h3.moduletable-title,
#parish-bottom .moduletable h3,
#parish-bottom h3 {
    font-family: var(--font-sans) !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: var(--c-white) !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    padding-bottom: 12px !important;
    margin-bottom: 18px !important;
}

/* General text in bottom */
#parish-bottom p,
#parish-bottom li,
#parish-bottom .sp-module-content {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.75;
}

#parish-bottom a {
    color: #bbbbbb !important;
    text-decoration: none;
}

#parish-bottom a:hover { color: var(--c-red) !important; }

/* About widget */
.parish-about-widget { color: #aaaaaa; }

.parish-about-logo-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: #cccccc;
    line-height: 1.35;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.parish-about-logo-text strong {
    font-weight: 700;
    font-size: 0.95rem;
    color: inherit;
    display: block;
    line-height: 1.1;
}

.parish-about-widget p { font-size: 13px; color: #aaaaaa; }

/* Quick links */
.parish-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.parish-quick-links li {
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 5px 0;
}

.parish-quick-links li::before {
    content: '›';
    color: var(--c-red);
    font-weight: 700;
    margin-right: 7px;
}

.parish-quick-links li a {
    color: #aaaaaa !important;
    font-size: 13px;
}

.parish-quick-links li a:hover { color: var(--c-red) !important; }

/* ══════════════════════════════════════════════════════════════
   FOOTER BAR
   ══════════════════════════════════════════════════════════════ */
#parish-footer {
    background: var(--c-darker);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 18px 0;
}

.parish-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.parish-footer__copy,
.parish-footer__copy p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.parish-footer__copy a { color: #888; }
.parish-footer__copy a:hover { color: var(--c-red); }

/* ══════════════════════════════════════════════════════════════
   FACEBOOK IMPORTED ARTICLES
   ══════════════════════════════════════════════════════════════ */
.fb-import-cover {
    margin: 0 0 20px;
    border-radius: 6px;
    overflow: hidden;
}
.fb-import-cover img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.fb-import-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin: 24px 0;
}
.fb-import-gallery figure {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1;
}
.fb-import-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.fb-import-gallery figure:hover img { transform: scale(1.05); }
.fb-source-note { color: #999; font-size: 12px; margin-top: 16px; }

/* ══════════════════════════════════════════════════════════════
   FACEBOOK FEED MODULE
   ══════════════════════════════════════════════════════════════ */
.mod-fb-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fb-post-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--c-border);
}

.fb-post-item:last-of-type {
    border-bottom: none;
}

.fb-post-thumb {
    flex: 0 0 90px;
}

.fb-post-thumb img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.fb-post-body {
    flex: 1;
    min-width: 0;
}

.fb-post-date {
    font-size: 11px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.fb-post-date .fa-calendar-alt {
    margin-right: 4px;
    color: var(--c-red);
}

.fb-post-text {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--c-text);
    margin: 0 0 8px;
}

.fb-post-more {
    font-size: 12px;
    font-weight: 600;
    color: #1877f2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.fb-post-more:hover { text-decoration: underline; color: #1251a3; }

.fb-feed-footer {
    padding-top: 14px;
    text-align: center;
}

.fb-feed-footer a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-white);
    background: #1877f2;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
}

.fb-feed-footer a:hover { background: #1251a3; }

/* ══════════════════════════════════════════════════════════════ */

.parish-backtotop {
    font-size: 12px;
    color: #666 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.parish-backtotop:hover { color: var(--c-red) !important; }

/* ── Sticky navbar ─────────────────────────────────────────── */
#parish-navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    box-shadow: 0 2px 12px rgba(0,0,0,.4);
    animation: slideDown .25s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   JOOMLA OVERRIDES
   ══════════════════════════════════════════════════════════════ */

/* Remove Bootstrap's default nav styles */
.parish-nav .nav-link { padding: 0; }
ul.mod-menu { padding: 0; margin: 0; }

/* Fix Bootstrap container interference */
#parish-topbar .container,
#parish-navbar .container,
#parish-slider .container,
#parish-main .container {
    max-width: var(--container);
}

/* Joomla system messages */
#system-message-container { padding: 0 0 20px; }

/* Content images */
.item-content img, .articleBody img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .parish-bottom__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .parish-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .parish-features__col:nth-child(2) { border-right: none; }
    .parish-features__col:last-child   { border-right: 1px solid var(--c-border); }

    .row.row-1.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Topbar: stack vertically */
    .parish-topbar__inner {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }
    .parish-topbar__logo  { grid-column: 1; grid-row: 1; text-align: left; }
    .parish-topbar__right { grid-column: 2; grid-row: 1; }
    .parish-topbar__left  { grid-column: 1 / -1; grid-row: 2; display: none; }

    /* Show hamburger */
    .parish-nav__toggle { display: flex; }

    /* Navbar: hidden by default, toggle shows it */
    #parish-navbar { border-bottom: none; }
    .parish-navbar__menu { display: none; }
    .parish-navbar__menu.is-open { display: block; }

    ul.parish-nav {
        flex-direction: column;
        padding: 8px 0;
        background: var(--c-dark);
    }

    .parish-nav__link {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,.07) !important;
    }

    .parish-nav__dropdown {
        position: static;
        box-shadow: none;
        border-top: none;
        background: rgba(0,0,0,.2);
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        pointer-events: auto;
        display: none;
    }

    .parish-nav__item.dropdown-open > .parish-nav__dropdown { display: block; }

    .parish-nav__dropdown .parish-nav__link { padding-left: 36px; }

    /* Slider fixed height on mobile — prevents layout jump between slides */
    #parish-slider .carousel-inner { height: 220px !important; overflow: hidden; }
    #parish-slider .carousel-item { height: 220px !important; overflow: hidden; }
    #parish-slider .carousel-item img,
    #parish-slider .carousel-item picture img { display: block !important; height: 220px !important; max-height: none !important; width: 100% !important; object-fit: cover !important; }
    #parish-slider .carousel-caption { display: none !important; }

    /* Feature boxes: single column */
    .parish-features__grid { grid-template-columns: 1fr; }
    .parish-features__col  { border-right: none; border-bottom: 1px solid var(--c-border); }

    /* Content: no sidebar */
    .parish-main__layout.has-sidebar { grid-template-columns: 1fr; }

    /* Articles: single column */
    .row.row-1.cols-3 { grid-template-columns: 1fr; }

    /* Bottom: single column */
    .parish-bottom__grid { grid-template-columns: 1fr; }

    /* Footer */
    .parish-footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .parish-logo-name { font-size: 1rem; }
    .church-donate-btn { font-size: 11px; padding: 8px 14px; }
}

/* ── Galeria – siatka kategorii ─────────────────────────────────────── */
.parish-gallery-categories { padding: 20px 0; }

.parish-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    padding: 10px 0 30px;
}

.parish-gallery-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
    transition: transform .2s, box-shadow .2s;
}
.parish-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,.16);
}

.parish-gallery-card__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #1a2744;
}
.parish-gallery-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.parish-gallery-card:hover .parish-gallery-card__thumb img {
    transform: scale(1.06);
}

.parish-gallery-card__count {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
}

.parish-gallery-card__lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 36px;
    opacity: .7;
}

.parish-gallery-card__title {
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #1a2744;
    line-height: 1.3;
}
.parish-gallery-card__title a {
    color: inherit;
    text-decoration: none;
}
.parish-gallery-card__title a:hover { color: #df3840; }

/* ── Phoca Gallery – widok kategorii (zdjęcia) ──────────────────────── */
.parish-gallery-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2744;
    margin: 0 0 18px;
}

/* Nawigacja powrót */
.parish-gallery-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.parish-gallery-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1a2744;
    color: #fff;
    padding: 7px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}
.parish-gallery-back:hover { background: #df3840; color: #fff; }
.parish-gallery-subnav {
    color: #1a2744;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.parish-gallery-subnav:hover { color: #df3840; }

/* Siatka zdjęć */
#phocagallery.parish-gallery-category .pg-category-items-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
#phocagallery.parish-gallery-category .pg-item-box {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
    transition: transform .2s, box-shadow .2s;
    position: relative;
}
#phocagallery.parish-gallery-category .pg-item-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,.18);
}

/* Ikony akcji – pokaż dopiero na hover, małe i dyskretne */
#phocagallery.parish-gallery-category .pg-item-box-icons-box {
    position: absolute;
    top: 6px;
    right: 6px;
    display: none;
    gap: 4px;
    background: rgba(0,0,0,.45);
    border-radius: 4px;
    padding: 4px 6px;
}
#phocagallery.parish-gallery-category .pg-item-box:hover .pg-item-box-icons-box {
    display: flex;
}
#phocagallery.parish-gallery-category .pg-item-box-icons-box .ph-si {
    width: 18px !important;
    height: 18px !important;
    fill: #fff;
}

/* Ukryj ikonę SVG w tytule zdjęcia */
#phocagallery.parish-gallery-category .pg-item-box-title .ph-si { display: none; }

/* Tytuł zdjęcia */
#phocagallery.parish-gallery-category .pg-item-box-info {
    padding: 8px 10px;
}
#phocagallery.parish-gallery-category .pg-item-box-title {
    font-size: 12px;
    color: #444;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#phocagallery.parish-gallery-category .pg-item-box-title a {
    color: inherit;
    text-decoration: none;
}
#phocagallery.parish-gallery-category .pg-item-box-title a:hover { color: #df3840; }

/* Ukryj RSS i etykietę "hot/new" jeśli niepotrzebne */
#phocagallery.parish-gallery-category .pg-top-icons { display: none; }

/* ── Karuzela zdjęć w galerii ───────────────────────────────────────── */
.pgc-carousel-wrap {
    position: relative;
    margin-bottom: 30px;
}

/* Pasek przewijany */
.pgc-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 8px;
}
.pgc-track::-webkit-scrollbar { height: 4px; }
.pgc-track::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }

/* Pojedynczy slajd */
.pgc-slide {
    flex: 0 0 calc(25% - 8px);
    min-width: 160px;
    scroll-snap-align: start;
}
@media (max-width: 768px) { .pgc-slide { flex: 0 0 calc(50% - 6px); } }
@media (max-width: 480px) { .pgc-slide { flex: 0 0 calc(100% - 4px); } }

/* Kafelek zdjęcia */
.pgc-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4/3;
    background: #1a2744;
}
.pgc-img-link img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s;
    display: block;
}
.pgc-slide:hover .pgc-img-link img { transform: scale(1.07); }

/* Opis na hover */
.pgc-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 11px;
    padding: 5px 8px;
    text-align: center;
    opacity: 0;
    transition: opacity .25s;
}
.pgc-slide:hover .pgc-caption { opacity: 1; }

/* Przyciski prev/next */
.pgc-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(26,39,68,.75);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
}
.pgc-btn:hover { background: #df3840; }
.pgc-btn-prev { left: -18px; }
.pgc-btn-next { right: -18px; }
@media (max-width: 600px) { .pgc-btn-prev { left: 2px; } .pgc-btn-next { right: 2px; } }

/* Kropki nawigacji */
.pgc-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}
.pgc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}
.pgc-dot.active { background: #df3840; }

/* ── Galeria w artykule (plugin) ────────────────────────────────────── */
.pgce-wrap {
    position: relative;
    margin: 20px 0 28px;
}
.pgce-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 6px;
}
.pgce-track::-webkit-scrollbar { height: 4px; }
.pgce-track::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }
.pgce-slide {
    flex: 0 0 calc(25% - 6px);
    min-width: 140px;
    scroll-snap-align: start;
}
@media(max-width:768px){ .pgce-slide { flex: 0 0 calc(50% - 4px); } }
@media(max-width:480px){ .pgce-slide { flex: 0 0 calc(100% - 2px); } }
.pgce-img-link {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 5px;
    background: #1a2744;
}
.pgce-img-link img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s;
    display: block;
}
.pgce-slide:hover .pgce-img-link img { transform: scale(1.07); }
.pgce-btn {
    position: absolute;
    top: 50%; transform: translateY(-60%);
    z-index: 5;
    width: 34px; height: 34px;
    border-radius: 50%; border: none;
    background: rgba(26,39,68,.75);
    color: #fff; font-size: 20px;
    cursor: pointer; transition: background .2s;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.pgce-btn:hover { background: #df3840; }
.pgce-prev { left: -16px; }
.pgce-next { right: -16px; }
@media(max-width:600px){ .pgce-prev{left:2px} .pgce-next{right:2px} }
.pgce-dots { display:flex; justify-content:center; gap:6px; margin-top:6px; }
.pgce-dot {
    width:8px; height:8px; border-radius:50%;
    border:none; background:#cbd5e1; cursor:pointer; padding:0;
    transition:background .2s;
}
.pgce-dot.active { background:#df3840; }

/* ── Wyszukiwarka w navbarze ────────────────────────────────────────────── */
.parish-search-form {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding: 0 0 0 12px;
}
.parish-search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    overflow: hidden;
    transition: background .2s, border-color .2s;
}
.parish-search-box:focus-within {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.55);
}
.parish-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: .85rem;
    padding: 5px 10px;
    width: 160px;
    transition: width .3s;
}
.parish-search-input::placeholder { color: rgba(255,255,255,.55); }
.parish-search-input:focus { width: 220px; }
.parish-search-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,.7);
    padding: 5px 10px;
    cursor: pointer;
    font-size: .85rem;
    transition: color .2s;
}
.parish-search-btn:hover { color: #fff; }
@media (max-width: 900px) {
    .parish-search-form { display: none; }
}

/* ── Wyniki wyszukiwania ────────────────────────────────────────────────── */
.search .page-header h1,
.com-search h1.page-header { margin-bottom: 1.5rem; }
.search-results { list-style: none; padding: 0; margin: 0; }
.search-result-item {
    border-bottom: 1px solid #e8ecef;
    padding: 18px 0;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-title a {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2744;
    text-decoration: none;
}
.search-result-title a:hover { color: #df3840; }
.search-result-text { color: #555; font-size: .93rem; margin-top: 4px; }
.search-result-category { font-size: .8rem; color: #999; margin-top: 4px; }
.search .form-inline { display: flex; gap: 8px; margin-bottom: 1.5rem; }
.search .form-inline input[type="text"],
.search .form-inline input[type="search"] {
    flex: 1;
    padding: 8px 14px;
    border: 1px solid #d0d6e0;
    border-radius: 4px;
    font-size: .95rem;
}
.search .form-inline button,
.search .form-inline input[type="submit"] {
    padding: 8px 20px;
    background: #1a2744;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: .95rem;
}
.search .form-inline button:hover,
.search .form-inline input[type="submit"]:hover { background: #df3840; }

/* ── Smart Search (com_finder) wyniki ──────────────────────────────────── */
.com-finder .page-header h2 { margin-bottom: 1rem; }
.com-finder .finder-query-form { margin-bottom: 2rem; }
.com-finder .finder-query-form .input-group {
    display: flex; gap: 8px;
}
.com-finder .finder-query-form input[type="search"],
.com-finder .finder-query-form input[type="text"] {
    flex: 1; padding: 9px 14px;
    border: 1px solid #d0d6e0; border-radius: 4px; font-size: .95rem;
}
.com-finder .finder-query-form .btn,
.com-finder .finder-query-form button[type="submit"] {
    padding: 9px 22px; background: #1a2744; color: #fff;
    border: none; border-radius: 4px; cursor: pointer; font-size: .95rem;
    transition: background .2s;
}
.com-finder .finder-query-form .btn:hover { background: #df3840; }
.result__list { list-style: none; padding: 0; margin: 0; }
.result__item {
    padding: 18px 0;
    border-bottom: 1px solid #e8ecef;
}
.result__item:last-child { border-bottom: none; }
.result__title-link {
    font-size: 1.1rem; font-weight: 700; color: #1a2744; text-decoration: none;
}
.result__title-link:hover .result__title-text { color: #df3840; }
.result__title-url {
    display: block; font-size: .78rem; color: #4a7c59;
    font-style: normal; margin-top: 2px;
}
.result__description {
    color: #555; font-size: .93rem; margin: 5px 0 0; line-height: 1.55;
}
.result__date { color: #999; font-size: .82rem; margin-right: 8px; }
.result__taxonomy { list-style: none; padding: 0; margin: 5px 0 0; display: flex; gap: 8px; flex-wrap: wrap; }
.result__taxonomy-item { font-size: .8rem; color: #888; }

/* ══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════════════════════ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #222;
    color: #ddd;
    font-size: .875rem;
    font-family: var(--font-sans, sans-serif);
    border-top: 3px solid var(--c-red, #8b1a1a);
    box-shadow: 0 -4px 20px rgba(0,0,0,.5);
}
#cookie-banner-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}
#cookie-banner-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}
#cookie-banner-text {
    flex: 1;
    margin: 0;
    line-height: 1.6;
    color: #ccc;
}
#cookie-banner-text strong { color: #fff; }
#cookie-banner-text a {
    color: #c8a96e;
    text-decoration: underline;
    text-underline-offset: 2px;
}
#cookie-banner-text a:hover { color: #e0c080; }
#cookie-accept-btn {
    flex-shrink: 0;
    background: var(--c-red, #8b1a1a);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: .875rem;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: .03em;
    cursor: pointer;
    transition: background .2s, transform .1s;
    white-space: nowrap;
}
#cookie-accept-btn:hover  { background: #a52020; }
#cookie-accept-btn:active { transform: scale(.97); }
@media (max-width: 768px) {
    #cookie-banner-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 16px;
    }
    #cookie-banner-icon { display: none; }
    #cookie-accept-btn  { width: 100%; text-align: center; padding: 11px; }
}
