/* =========================
   PODSTRONY – GZSP Czarny Bór
========================= */

/* Ochrona obrazków */
img, video {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
a img, button img { pointer-events: auto; }

/* =========================
   SUBPAGE HERO
========================= */
.subpage-hero {
  position: relative;
  height: 60vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
}
.subpage-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.subpage-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.subpage-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 48px clamp(20px,5vw,100px);
  max-width: 1100px;
  width: 100%;
}
.subpage-hero-content h1 {
  font-size: clamp(28px,5vw,52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.subpage-hero-subtitle {
  font-size: clamp(14px,1.6vw,18px);
  line-height: 1.6;
  opacity: .85;
  max-width: 600px;
  margin: 0;
}
.subpage-hero--sm {
  height: 40vh;
  min-height: 260px;
}
@media (max-width: 768px) {
  .subpage-hero { height: 50vh; }
  .subpage-hero--sm { height: 35vh; }
  .subpage-hero-content { padding: 32px 20px; }
}

/* =========================
   PATRON – zdjęcie z float
========================= */
.patron-img {
  float: left;
  margin: 0 20px 16px 0;
  max-width: 266px;
  width: 40%;
  height: auto;
  border-radius: 4px;
}
@media (max-width: 480px) {
  .patron-img {
    float: none;
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
  }
}

/* =========================
   TREŚĆ STRONY
========================= */
.page-content-wide {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(40px,5vw,72px) 20px;
}

.page-text-full p {
  font-size: clamp(15px,1.7vw,18px);
  line-height: 1.85;
  color: #333;
  margin-bottom: 22px;
}
.page-text-full h2 {
  font-size: clamp(20px,2.5vw,26px);
  font-weight: 700;
  color: #111;
  margin: 40px 0 16px;
  scroll-margin-top: 100px;
}
.page-text-full h3 {
  font-size: clamp(17px,2vw,21px);
  font-weight: 700;
  color: #111;
  margin: 32px 0 12px;
}
.page-text-full ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 22px;
}
.page-text-full ul li {
  font-size: clamp(15px,1.7vw,17px);
  line-height: 1.8;
  color: #333;
  margin-bottom: 4px;
  padding-left: 0;
}
.page-text-full ul li::before { display: none; }
.page-text-full a {
  color: var(--brand-dark, #176840);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-text-full a:hover { opacity: .75; }
.page-text-full .btn,
.page-text-full .btn:visited,
.page-text-full .btn:hover { color: #fff; text-decoration: none; }
.page-text-full .btn--outline,
.page-text-full .btn--outline:visited { color: var(--brand-dark); }
.page-text-full .btn--outline:hover { color: #fff; }

/* Constrain images inside article content */
.page-text-full img {
  max-height: 260px;
  width: auto;
  max-width: 100%;
  border-radius: 4px;
  display: inline-block;
  vertical-align: top;
  margin: 3px;
  cursor: zoom-in;
}
/* Joomla float:left/right images — wrap nicely */
.page-text-full img[align="left"],
.page-text-full img[style*="float: left"],
.page-text-full img[style*="float:left"] {
  float: left;
  margin: 4px 20px 12px 0;
  max-height: none;
  max-width: min(50%, 400px);
}
.page-text-full img[align="right"],
.page-text-full img[style*="float: right"],
.page-text-full img[style*="float:right"] {
  float: right;
  margin: 4px 0 12px 20px;
  max-height: none;
  max-width: min(50%, 400px);
}
.page-text-full::after { content: ''; display: table; clear: both; }

/* Pojedyncze zdjęcie wyciągnięte z akapitu */
.article-single-img {
  margin: 0 0 20px;
  text-align: center;
}
.article-single-img img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 480px;
  border-radius: 6px;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  cursor: zoom-in;
}

/* Siatka zdjęć wyciągniętych z bloku tekstu */
.article-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 16px 0;
}
.article-photo-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin: 0;
  display: block;
  vertical-align: top;
  cursor: zoom-in;
  max-height: none;
}
@media (max-width: 600px) {
  .article-photo-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
}

.post-image {
  margin: 32px 0;
}
.post-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.post-image-caption {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* =========================
   META POSTA
========================= */
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.post-meta time {
  font-size: 14px;
  color: #888;
}
.post-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--brand, #1F8452);
  color: #fff;
  padding: 4px 12px;
  border-radius: 2px;
}

/* SPIS TREŚCI */
.post-toc {
  background: #f0f7f4;
  border: 1px solid #c8e6d8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 40px;
}
.post-toc h2 {
  font-size: 16px;
  margin: 0 0 14px;
  color: #111;
}
.post-toc ul { list-style: none; padding: 0; margin: 0; }
.post-toc li { margin-bottom: 6px; }
.post-toc a {
  color: var(--brand-dark, #176840);
  text-decoration: none;
  font-weight: 500;
}
.post-toc a:hover { text-decoration: underline; }

/* AUTOR */
.post-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.post-author img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}
.author-bio { font-size: 13px; color: #777; }

/* POWIĄZANE POSTY */
.related-posts { margin-top: 40px; }
.related-posts h2 { font-size: 18px; margin-bottom: 16px; }
.related-posts ul { list-style: none; padding: 0; }
.related-posts li { margin-bottom: 8px; }
.related-posts a {
  color: var(--brand-dark, #176840);
  text-decoration: none;
  font-weight: 600;
}
.related-posts a:hover { text-decoration: underline; }

.post-footer { margin-top: 48px; }
.post-back-link {
  color: var(--brand-dark, #176840);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.post-back-link:hover { gap: 10px; }

/* =========================
   AKTUALNOŚCI – LISTING
========================= */
.news-listing {
  padding: clamp(40px,5vw,72px) 20px;
  background: #fff;
}

/* =========================
   KONTAKT
========================= */
.contact-section {
  padding: clamp(48px,6vw,80px) 20px;
  background: #fff;
}
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.contact-card {
  padding: 28px 24px;
  background: #f7f8f6;
  border-radius: 6px;
  text-align: center;
}
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  background: var(--brand, #1F8452);
  color: #fff;
  border-radius: 50%;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.contact-card p { font-size: 15px; line-height: 1.7; color: #444; }
.contact-card a { color: #111; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* Siatka kontakt (info + mapa) */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #111;
}
.contact-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--brand, #1F8452);
  margin-top: 2px;
}
.contact-item strong { display: block; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; color: #888; margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 16px; color: #111; text-decoration: none; line-height: 1.6; }
.contact-item a:hover { text-decoration: underline; }
.contact-map iframe { width: 100%; border-radius: 8px; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================
   MAPA IFRAME
========================= */
.map-container {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.map-container iframe { display: block; }

/* =========================
   FAK / ACCORDION
========================= */
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-toggle {
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.faq-toggle:hover { background: #f7f8f6; }
.faq-toggle h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  flex: 1;
}
.faq-toggle-icon {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--brand, #1F8452);
  font-size: 18px;
}
.faq-toggle[aria-expanded="true"] .faq-toggle-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  background: #f9faf8;
  border-top: 1px solid #e0e0e0;
  transition: max-height .3s ease, visibility .3s;
}
.faq-answer.is-expanded { max-height: 1000px; visibility: visible; }
.faq-answer p { margin: 16px 20px; font-size: 15px; line-height: 1.7; color: #333; }

/* =========================
   LIGHTBOX (galeria)
========================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay[hidden] { display: none; }
.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 90vw;
  max-height: 90vh;
}
#lb-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
  display: block;
}
.lightbox-counter {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  letter-spacing: .5px;
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
  transition: opacity .2s, background .2s;
}
.lightbox-close:hover { opacity: 1; background: rgba(255,255,255,.25); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.3); }

@media (max-width: 480px) {
  .lightbox-prev, .lightbox-next {
    width: 40px; height: 40px;
    bottom: 16px; top: auto;
    transform: none;
  }
  .lightbox-prev { left: calc(50% - 52px); }
  .lightbox-next { right: auto; left: calc(50% + 4px); }
}

/* =========================
   ALBUM GRID (pojedynczy album)
========================= */
.album-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px,100%), 1fr));
  gap: 8px;
}
@media (max-width: 480px) {
  .album-photos { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}
.album-photo-btn {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #e8f5ee;
  padding: 0;
  border: none;
  cursor: pointer;
}
.album-photo-btn img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
  pointer-events: none;
}
.album-photo-btn:hover img,
.album-photo-btn:focus-visible img { transform: scale(1.06); }
.album-photo-btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.album-description {
  max-width: 720px;
  margin: 0 auto 32px;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

/* =========================
   STRUKTURY (nauczyciele, dyrekcja)
========================= */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 28px;
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
}
.staff-card {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: box-shadow .25s;
}
.staff-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.staff-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  background: #e8f5ee;
}
.staff-name {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.staff-role {
  font-size: 13px;
  color: #666;
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: 12px 20px;
  font-size: 13px;
  color: #888;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  line-height: 1.6;
}
.breadcrumb a { color: var(--brand-dark, #176840); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 4px; }

/* =========================
   PAGE TEXT (generic content pages)
========================= */
.page-text {
  max-width: 900px;
  margin: 0 auto;
}
.page-text p {
  font-size: clamp(15px,1.7vw,17px);
  line-height: 1.85;
  color: #333;
  margin-bottom: 18px;
}
.page-text h2 {
  font-size: clamp(19px,2.2vw,24px);
  font-weight: 700;
  color: #111;
  margin: 36px 0 14px;
  scroll-margin-top: 100px;
}
.page-text h3 {
  font-size: clamp(16px,1.8vw,20px);
  font-weight: 700;
  color: #111;
  margin: 28px 0 10px;
}
.page-text a {
  color: var(--brand-dark, #176840);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-text a:hover { opacity: .75; }
.page-text .btn,
.page-text .btn:visited,
.page-text .btn:hover { color: #fff; text-decoration: none; }
.page-text .btn--outline,
.page-text .btn--outline:visited { color: var(--brand-dark); text-decoration: none; }
.page-text .btn--outline:hover { color: #fff; }
.page-text .doc-download,
.page-text .doc-download:visited,
.page-text .doc-download:hover { color: #fff; text-decoration: none; }

/* =========================
   LISTA PRACOWNIKÓW (administracja)
========================= */
.staff-list {
  margin: 0 0 32px;
  padding: 0;
}
.staff-list__row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.staff-list__row:first-child { border-top: 1px solid #eee; }
.staff-list dt {
  font-weight: 600;
  min-width: 220px;
  color: #111;
}
.staff-list dd {
  margin: 0;
  color: #555;
}
@media (max-width: 480px) {
  .staff-list__row { flex-direction: column; gap: 2px; }
  .staff-list dt { min-width: unset; }
}

/* =========================
   SCHEDULE TABLE (rozkład jazdy)
========================= */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(13px,1.5vw,15px);
  min-width: 540px;
}
.schedule-table th,
.schedule-table td {
  border: 1px solid #d0d0d0;
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.schedule-table thead th {
  background: var(--brand-dark, #176840);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.schedule-table tbody tr:nth-child(even) { background: #f5faf7; }
.schedule-table tbody tr:hover { background: #e8f5ee; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(13px,1.5vw,15px);
  margin-bottom: 24px;
}
.info-table th,
.info-table td {
  border: 1px solid #d0d0d0;
  padding: 8px 16px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.5;
}
.info-table thead th {
  background: var(--brand-dark, #176840);
  color: #fff;
  font-weight: 600;
}
.info-table tbody tr:nth-child(even) { background: #f5faf7; }
.info-table tbody tr:hover { background: #e8f5ee; }

/* Image popup overlay (treść stron) */
#img-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: zoom-out;
}
#img-popup-overlay[hidden] { display: none; }
#img-popup-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#img-popup-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  cursor: default;
}
#img-popup-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}
#img-popup-close:hover,
#img-popup-close:focus-visible {
  background: rgba(255,255,255,.3);
  outline: 2px solid #fff;
}
#img-popup-prev,
#img-popup-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}
#img-popup-prev { left: 16px; }
#img-popup-next { right: 16px; }
#img-popup-prev:hover, #img-popup-prev:focus-visible,
#img-popup-next:hover, #img-popup-next:focus-visible {
  background: rgba(255,255,255,.3);
  outline: 2px solid #fff;
}
#img-popup-counter {
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  #img-popup-prev, #img-popup-next {
    top: auto;
    bottom: 20px;
    transform: none;
    width: 44px;
    height: 44px;
  }
  #img-popup-prev { left: calc(50% - 52px); }
  #img-popup-next { right: calc(50% - 52px); }
}

/* =========================
   GALERIA W ARTYKULE
========================= */
.post-gallery {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #f0f0f0;
}
.post-gallery__title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.post-gallery__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand, #1F8452);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.post-gallery__link:hover { gap: 10px; }
.post-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
@media (max-width: 600px) {
  .post-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}

/* --- Siatka podstron (kafelki nawigacyjne na stronach-rodzicach) --- */
.subpage-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.subpage-nav-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1.5px solid #e4ede8;
  border-radius: 10px;
  text-decoration: none;
  color: var(--brand-dark, #176840);
  font-weight: 600;
  font-size: 15px;
  background: #fff;
  transition: border-color .18s, background .18s, color .18s, box-shadow .18s;
  line-height: 1.35;
}
.subpage-nav-card:hover {
  border-color: var(--brand, #1F8452);
  background: var(--brand-light, rgba(31,132,82,.06));
  color: var(--brand-dark, #176840);
  box-shadow: 0 3px 10px rgba(31,132,82,.12);
}
.subpage-nav-card__arrow {
  flex-shrink: 0;
  margin-left: auto;
  color: var(--brand, #1F8452);
  opacity: .6;
  transition: opacity .18s, transform .18s;
}
.subpage-nav-card:hover .subpage-nav-card__arrow {
  opacity: 1;
  transform: translateX(3px);
}
@media (max-width: 860px) {
  .subpage-nav-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .subpage-nav-grid { grid-template-columns: 1fr; gap: 10px; }
  .subpage-nav-card { font-size: 14px; padding: 14px 16px; }
}

/* =========================
   PAGE UPDATED NOTICE
========================= */
.page-updated {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: var(--max-width, 1200px);
  margin: 0 auto 32px;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid #eee;
  color: #555;
}
.page-updated svg {
  flex-shrink: 0;
  color: var(--brand, #1F8452);
  opacity: .8;
}
