/*
Theme Name: C 2025
Theme URI: https://sien.it/
Author: M.Gioia
Version: 0.1.0
Description: Tema minimale per Tampep con header personalizzato e layout home hero.
*/

:root {
  --c2025-border-color: #666;
  --c2025-text-color: #111;
  --c2025-background: #fff;
  --c2025-content-width: min(1400px, calc(100vw - clamp(2rem, 6vw, 5rem)));
  --c2025-overlay-border: #fff;
}

body {
  color: var(--c2025-text-color);
  background-color: var(--c2025-background);
  font-feature-settings: "liga" on, "clig" on;
  position: relative;
}

body.c2025-lock-scroll {
  overflow: hidden;
}

.wp-site-blocks > header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 3px solid #000;
}

.wp-site-blocks > footer.wp-block-template-part {
  border-top: 3px solid #000;
  background: #fff;
}

.c2025-site-header {
  width: 100%;
  margin: 0;
  padding: clamp(0.35rem, 1vw, 0.75rem) 0;
}

.c2025-site-header > .wp-block-group {
  margin: 0 auto;
  max-width: var(--c2025-content-width);
}


.c2025-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: 72px;
}

.c2025-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.c2025-header-brand,
.c2025-header-tagline {
  display: none;
}

.c2025-logo-icon {
  width: clamp(54px, 5vw, 86px);
  height: clamp(54px, 5vw, 86px);
  background-image: url('./assets/images/tampep_log.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

.c2025-menu-toggle,
.c2025-overlay-close {
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.85rem clamp(0.5rem, 1vw, 1rem);
  width: auto;
  text-align: left;
}

.c2025-site-title {
  width: 100%;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.18em;
  font-weight: 600;
  display: block;
}

.c2025-menu-toggle:focus,
.c2025-overlay-close:focus {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.c2025-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  width: auto;
  padding-left: 0;
}

.c2025-menu-icon {
  width: 24px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.c2025-menu-icon::before,
.c2025-menu-icon::after,
.c2025-menu-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.c2025-menu-icon::before {
  top: 0;
}

.c2025-menu-icon::after {
  bottom: 0;
}

.c2025-menu-icon span {
  display: block;
  top: 50%;
  transform: translateY(-50%);
}

.c2025-site-title a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 100%;
}

.c2025-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(1.5rem, 4vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.c2025-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.c2025-menu-overlay a {
  color: #fff;
}

.c2025-overlay-inner {
  width: var(--c2025-content-width);
  max-width: 100%;
  border: none;
  background: #3a3a3a;
  display: flex;
  flex-direction: column;
  max-height: min(90vh, 900px);
  overflow: hidden;
}

.c2025-overlay-top {
  width: 100%;
  border-bottom: 3px solid var(--c2025-overlay-border);
  display: grid;
  grid-template-columns: minmax(60px, 0.2fr) minmax(200px, 0.6fr) minmax(60px, 0.2fr);
  align-items: stretch;
}

.c2025-overlay-topcell {
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
}

.c2025-overlay-topcell--title {
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  text-align: center;
}

.c2025-overlay-topcell--close {
  justify-content: center;
}

.c2025-overlay-heading {
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}

.c2025-overlay-close {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.c2025-overlay-close::before,
.c2025-overlay-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.c2025-overlay-close::before {
  transform: translateY(-50%) rotate(45deg);
}

.c2025-overlay-close::after {
  transform: translateY(-50%) rotate(-45deg);
}

.c2025-overlay-socials {
  justify-content: flex-end;
  gap: 0.4rem;
}

.c2025-overlay-socials .wp-social-link {
  border: none;
  width: 28px;
  height: 28px;
  background: transparent;
}

.c2025-overlay-menu {
  width: 100%;
  border-bottom: none;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  flex: 1;
  overflow-y: auto;
}

.c2025-overlay-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c2025-overlay-menu-list > li > span {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.c2025-overlay-menu-list > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.c2025-overlay-menu-list > li > ul > li {
  font-size: 0.95rem;
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

.c2025-overlay-donate {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 1.25rem auto 0;
  padding: 0.65rem 2.5rem;
  border: 1px solid var(--c2025-overlay-border);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.c2025-overlay-search {
  width: 100%;
  border: none;
  padding: 0.75rem 1.1rem;
}

.c2025-overlay-search .wp-block-search__inside-wrapper {
  border: 1px solid var(--c2025-overlay-border);
  display: flex;
  min-height: 34px;
}

.c2025-overlay-search input {
  background: transparent;
  color: #fff;
  border: none;
  padding: 0.3rem 0.65rem;
}

.c2025-back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.c2025-back-to-top::after {
  content: "↑";
  font-weight: 600;
}

.c2025-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.c2025-overlay-search .wp-block-search__button {
  border-left: 1px solid var(--c2025-overlay-border);
  color: #000;
  background: #fff;
  padding: 0.3rem 0.65rem;
}

@media (max-width: 720px) {
  .c2025-header-bar {
    min-height: 64px;
  }

  .c2025-site-title {
    font-size: 0;
    line-height: 1;
  }

  .c2025-site-title::after {
    content: "TAMPEP";
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    letter-spacing: 0.25em;
    display: inline-block;
  }

  .c2025-header-tagline {
    display: none;
  }

  .c2025-overlay-heading {
    font-size: 0;
    line-height: 1;
  }

  .c2025-overlay-heading::after {
    content: "TAMPEP";
    font-size: clamp(1.1rem, 5.5vw, 1.4rem);
    letter-spacing: 0.25em;
    display: inline-block;
  }

  .c2025-overlay-top {
    grid-template-columns: minmax(50px, 0.15fr) minmax(140px, 0.7fr) minmax(50px, 0.15fr);
  }

  .c2025-overlay-topcell {
    padding: 0.5rem;
  }

  .c2025-overlay-menu {
    padding: 1.25rem;
  }
}

.c2025-home-main {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -1px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  --wp--style--block-gap: 0px;
}

.c2025-home-main > .wp-block-group,
.c2025-home-main > *:not(.alignwide):not(.alignfull),
.c2025-featured-image {
  margin-top: 0;
  margin-bottom: 0;
  max-width: var(--c2025-content-width);
  width: min(var(--c2025-content-width), 100%);
  margin-left: auto;
  margin-right: auto;
}

.c2025-home-main > *:last-child {
  margin-bottom: 0;
}

.wp-site-blocks > header.wp-block-template-part + main.c2025-home-main {
  margin-top: 0;
}

.wp-site-blocks > header.wp-block-template-part,
.wp-site-blocks > main.c2025-home-main,
.wp-site-blocks > footer.wp-block-template-part {
  margin-block-start: 0;
  margin-block-end: 0;
}

.c2025-featured-image figure,
.c2025-featured-image img {
  width: 100%;
}

.c2025-featured-image {
  margin-bottom: 0;
  width: 100%;
}

.c2025-featured-image .wp-block-post-featured-image {
  margin: 0;
  width: 100%;
}

.c2025-featured-image img {
  display: block;
}

.c2025-home-main .wp-block-post-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.c2025-home-main .wp-block-post-content > * {
  max-width: none;
  width: 100%;
}

.c2025-home-main .alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.c2025-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  --wp--style--block-gap: 0px;
}

.c2025-footer > .wp-block-group {
  margin: 0;
}

.c2025-footer-top {
  background: #e0f0f0;
  color: #0f1f1c;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  border-top: 3px solid #000;
  border-bottom: 1px solid #000;
}

.c2025-footer-bottom {
  background: #fff;
  color: #0f1f1c;
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(1.25rem, 3vw, 2rem);
  border-bottom: 3px solid #000;
}

.c2025-footer-top-inner,
.c2025-footer-bottom-inner {
  width: min(var(--c2025-content-width), 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.c2025-footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 4vw, 3rem);
}

.c2025-footer-logo {
  margin: 0;
  max-width: 320px;
  width: clamp(180px, 25vw, 320px);
  flex-shrink: 0;
}

.c2025-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.c2025-footer-cta {
  justify-content: center;
  flex: 1;
}

.c2025-footer-donate {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.c2025-footer-donate .wp-block-button__link {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(2rem, 6vw, 4rem);
  border-radius: 0;
  background: transparent;
  color: #000;
  font-weight: 600;
  border: 2px solid #000;
  transition: background 0.2s ease, color 0.2s ease;
}

.c2025-footer-donate::after {
  content: "";
  position: absolute;
  right: clamp(-4rem, -5vw, -6rem);
  bottom: clamp(-1rem, -1vw, -0.5rem);
  width: clamp(120px, 20vw, 180px);
  height: clamp(180px, 30vw, 240px);
  background-image: url('/wp-content/uploads/2025/11/Donna-con-fiore-sguardo-in-alto-a-sinistra.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  pointer-events: none;
}

.c2025-footer-donate .wp-block-button__link:hover {
  background: #000;
  color: #fff;
}

.c2025-archive-loop {
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.c2025-archive-loop .wp-block-post-template,
.c2025-latest-grid .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.c2025-archive-loop .wp-block-post-template > li,
.c2025-latest-grid .wp-block-post-template > li {
  height: 100%;
  display: flex;
  margin: 0;
}

.c2025-archive-loop .wp-block-post-template > li > *,
.c2025-latest-grid .wp-block-post-template > li > * {
  flex: 1;
}

.c2025-query-pagination {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 0.75rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.c2025-query-pagination .wp-block-query-pagination-previous,
.c2025-query-pagination .wp-block-query-pagination-next,
.c2025-query-pagination .wp-block-query-pagination-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.c2025-query-pagination a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.c2025-query-pagination a:hover {
  border-bottom-color: currentColor;
}

.c2025-query-pagination .page-numbers {
  padding: 0 0.25rem;
}

.c2025-query-pagination .page-numbers.current {
  font-weight: 700;
}

@media (max-width: 900px) {
  .c2025-archive-loop .wp-block-post-template,
  .c2025-latest-grid .wp-block-post-template {
    grid-template-columns: 1fr;
  }
}

.c2025-post-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  min-height: 320px;
}

.c2025-post-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #000;
  padding: 1rem;
}

.c2025-post-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.c2025-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c2025-post-card-meta,
.c2025-post-card-title,
.c2025-post-card-title a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  color: inherit;
  text-decoration: none;
}

.c2025-post-card-title {
  font-weight: 600;
  overflow: hidden;
  line-height: 1.2;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c2025-post-card-title a {
  color: inherit;
  text-decoration: none;
}

.c2025-post-card-title a:hover {
  text-decoration: underline;
}

.c2025-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

.c2025-footer-address {
  margin: 0;
  letter-spacing: 0.05em;
}

.c2025-footer-address a {
  color: inherit;
  text-decoration: underline;
}

.c2025-footer-meta {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f1f1c;
}

.error404 .c2025-footer-top {
  display: none;
}

.error404 .c2025-404-note {
  margin-bottom: 100px;
}

@media (max-width: 900px) {
  .c2025-footer-logo {
    max-width: 240px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .c2025-footer-top-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .c2025-footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .c2025-footer-cta {
    width: 100%;
    justify-content: center;
  }

  .c2025-footer-donate,
  .c2025-footer-donate .wp-block-button__link {
    width: 100%;
  }

  .c2025-footer-donate::after {
    position: static;
    display: block;
    margin: 1rem auto 0;
    width: clamp(140px, 60vw, 200px);
    height: clamp(200px, 65vw, 260px);
  }
}

.c2025-breadcrumbs {
  width: 100%;
  margin: 0 auto;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
}

.c2025-breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.c2025-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
}

.c2025-breadcrumbs li + li::before {
  content: "/";
  opacity: 0.7;
}

.c2025-breadcrumbs .c2025-breadcrumb-home::before {
  content: "⌂";
  font-size: 1rem;
  margin-right: 0.15rem;
}

.c2025-breadcrumbs a {
  text-decoration: none;
  color: inherit;
}

.c2025-page-main {
  width: min(var(--c2025-content-width), 100%);
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  padding: 0 clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.c2025-page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  background: #f7f6f2;
  padding: clamp(1rem, 2.5vw, 2rem);
  box-sizing: border-box;
}

.wp-block-group.alignfull.c2025-page-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.c2025-page-hero-media {
  flex: 1 1 35%;
  min-width: 240px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.c2025-page-featured {
  width: 100%;
  height: 100%;
  margin: 0;
}

.c2025-page-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c2025-404-icon {
  font-size: clamp(12rem, 28vw, 400px);
  margin: 0;
  line-height: 1;
  text-align: center;
}

.c2025-page-hero-content {
  flex: 1 1 40%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(0.5rem, 1.5vw, 1.2rem);
}

.c2025-page-hero--page .c2025-page-hero-media {
  flex: 0 0 clamp(240px, 35vw, 420px);
}

.c2025-page-hero-content--wide {
  flex: 1 1 55%;
}

.c2025-page-hero-content .c2025-breadcrumbs {
  margin: 0 0 0.75rem;
}

.c2025-accessibility-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.c2025-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c2025-form-field label {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c2025-form-field input,
.c2025-form-field textarea {
  border: 2px solid #000;
  padding: 0.6rem 0.8rem;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}

.c2025-accessibility-form .c2025-button {
  width: fit-content;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  padding: 0.65rem 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.c2025-accessibility-form .c2025-button:hover {
  background: transparent;
  color: #000;
}

.c2025-form-notice {
  border: 2px solid #000;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.c2025-form-notice.is-success {
  background: #e0f0e0;
}

.c2025-feedback-message {
  border-left: 4px solid #000;
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  background: #f9f9f9;
}

.c2025-media-meta {
  width: 100%;
}

.c2025-page-hero-date {
  flex: 0 0 clamp(140px, 15vw, 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  text-transform: uppercase;
  border-left: 6px solid #111;
}

.c2025-page-date,
.c2025-page-hero-date {
  flex-direction: column;
  gap: 0.35rem;
}

.c2025-date-day {
  font-size: clamp(4rem, 15vw, 10rem);
  line-height: 1;
  font-weight: 700;
}

.c2025-date-month {
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0.35em;
}

.c2025-date-month,
.c2025-meta-date-text {
  text-transform: uppercase;
}

.c2025-date-year {
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  line-height: 1;
  font-weight: 600;
}

.c2025-page-brief {
  flex: 1;
  min-width: 240px;
}

.c2025-meta-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.c2025-meta-date-text {
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  margin: 0 0 1rem;
}

.c2025-search-empty {
  font-size: clamp(3rem, 10vw, 6rem);
  text-align: center;
  color: #111;
  line-height: 1;
  font-weight: 600;
  margin: clamp(1rem, 4vw, 2rem) 0;
  filter: grayscale(1);
}

.c2025-category-badges {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.c2025-category-badges .wp-block-categories-list,
.c2025-category-badges ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.c2025-category-badges li {
  margin: 0;
}

.c2025-category-badges li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  border: 2px solid transparent;
  color: #fff;
}

.c2025-category-badges li:nth-child(3n + 1) a {
  background: #111;
  border-color: #111;
  color: #fff;
}

.c2025-category-badges li:nth-child(3n + 2) a {
  background: #006d77;
  border-color: #006d77;
  color: #fff;
}

.c2025-category-badges li:nth-child(3n + 3) a {
  background: #ffd83d;
  border-color: #ffd83d;
  color: #111;
}

.c2025-category-badges li a:hover {
  filter: brightness(0.9);
}

.c2025-meta-taxes {
  gap: clamp(1rem, 2vw, 2rem);
}

.c2025-meta-value {
  font-size: 1rem;
  margin: 0;
}

.c2025-date-label {
  color: #fff;
  margin-top: 1rem;
  text-align: center;
}

.c2025-meta-value a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.c2025-meta-value a:hover {
  border-bottom-color: currentColor;
}

.c2025-page-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0;
  text-align: center;
}

.c2025-page-excerpt {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.5;
  margin: 0;
}

.c2025-page-content {
  width: 100%;
  max-width: min(var(--c2025-content-width), 100%);
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
}

.c2025-page-content > * {
  max-width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .c2025-page-hero {
    flex-direction: column;
  }

  .c2025-page-hero-date {
    width: 100%;
  }
}
.c2025-breadcrumb-row {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 0.65rem clamp(1rem, 4vw, 2rem);
  background: #fff;
}
