@charset "UTF-8";
:root {
  --osp-red: #d71920;
  --osp-red-dark: #9f1018;
  --osp-ink: #151515;
  --osp-muted: #6f747b;
  --osp-cream: #f7f3eb;
  --osp-gold: #f3b33d;
  --osp-line: #e7e2d8;
}

/* Recruitment path and live weather reliability */
.osp-navbar .navbar-nav .osp-nav-home {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  padding: 0.75rem 0.8rem;
  font-size: 0;
  line-height: 1;
}

.osp-nav-home__icon {
  display: block;
  width: 1.12rem;
  height: 1.12rem;
  fill: currentColor;
  flex: none;
}

.osp-map-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.osp-map-summary span {
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.osp-map-summary strong {
  color: #fff;
  font-size: 1.15rem;
}

.osp-map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.osp-map-filters button {
  border: 1px solid #d8dde2;
  background: #fff;
  color: #26323d;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.78rem;
}

.osp-map-filters button.is-active {
  background: var(--osp-red);
  border-color: var(--osp-red);
  color: #fff;
}

.osp-map-list__item em {
  display: block;
  color: var(--osp-red);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osp-map-guide-card {
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border-top: 4px solid var(--osp-red);
  box-shadow: 0 12px 30px rgba(25, 31, 38, 0.08);
}

.osp-map-guide-card > span {
  color: var(--osp-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osp-map-guide-card h3 {
  margin: 0.55rem 0 0.65rem;
  font-size: 1.25rem;
}

.osp-map-guide-card p {
  color: #626b73;
}

.osp-map-guide-card a {
  color: #a91218;
  font-weight: 800;
}

.osp-places-directory__grid,
.osp-place-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.osp-places-directory__grid a,
.osp-place-related__grid a {
  display: flex;
  flex-direction: column;
  min-height: 140px;
  padding: 1.25rem;
  border: 1px solid #e2e5e8;
  background: #fff;
  color: #17212b;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.osp-places-directory__grid a:hover,
.osp-place-related__grid a:hover {
  border-color: var(--osp-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(25, 31, 38, 0.1);
}

.osp-places-directory__grid span,
.osp-place-related__grid span {
  color: var(--osp-red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.osp-places-directory__grid strong,
.osp-place-related__grid strong {
  margin: 0.55rem 0;
  font-size: 1.04rem;
  line-height: 1.3;
}

.osp-places-directory__grid small,
.osp-place-related__grid small {
  margin-top: auto;
  color: #66717b;
  line-height: 1.45;
}

.osp-place-detail {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.osp-place-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
}

.osp-place-breadcrumb a {
  color: inherit;
}

.osp-place-detail__heading {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.osp-place-detail__heading img {
  width: 76px;
  height: 76px;
  padding: 0.65rem;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}

.osp-place-detail__heading h1 {
  max-width: 950px;
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.osp-place-detail__heading p {
  margin: 0;
  font-size: 1.08rem;
}

.osp-place-content {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: #f7f5f1;
}

.osp-place-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
}

.osp-place-card, .osp-place-map-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  box-shadow: 0 15px 38px rgba(25, 31, 38, 0.08);
}

.osp-place-card h2 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.osp-place-card > p {
  color: #5d6670;
  font-size: 1.05rem;
  line-height: 1.75;
}

.osp-place-card dl {
  margin: 1.8rem 0;
  border-top: 1px solid #e2e5e8;
}

.osp-place-card dl div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #e2e5e8;
}

.osp-place-card dt {
  font-weight: 800;
}

.osp-place-card dd {
  margin: 0;
  color: #5d6670;
}

.osp-place-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.osp-place-source {
  color: var(--osp-red);
  font-weight: 800;
}

.osp-place-notice {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 4px solid var(--osp-red);
  background: #fff5f5;
  font-size: 0.9rem !important;
}

.osp-place-map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.osp-place-map-card > a {
  display: block;
  margin-top: 1rem;
  color: var(--osp-red);
  font-weight: 800;
  text-align: center;
}

.osp-place-related {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.osp-place-related h2 {
  margin: 0.5rem 0 1.5rem;
}

@media (max-width: 991.98px) {
  .osp-places-directory__grid, .osp-place-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .osp-place-content__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .osp-places-directory__grid, .osp-place-related__grid {
    grid-template-columns: 1fr;
  }
  .osp-place-detail__heading {
    align-items: flex-start;
  }
  .osp-place-detail__heading img {
    width: 58px;
    height: 58px;
  }
  .osp-place-card dl div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .osp-place-map-card iframe {
    min-height: 320px;
  }
}
.osp-support-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #11181e;
  color: #fff;
}

.osp-support-hero__media {
  position: absolute;
  inset: 0;
  background: url("../img/support-business-partnership.optimized.webp") center/cover no-repeat;
  transform: scale(1.01);
}

.osp-support-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 15, 19, 0.98) 0%, rgba(10, 15, 19, 0.91) 38%, rgba(10, 15, 19, 0.3) 70%, rgba(10, 15, 19, 0.08) 100%), linear-gradient(0deg, rgba(10, 15, 19, 0.38), transparent 45%);
}

.osp-support-hero .container {
  position: relative;
  z-index: 1;
}

.osp-support-hero__content {
  max-width: 720px;
  padding: 7.5rem 0 5.5rem;
}

.osp-support-hero h1 {
  max-width: 680px;
  margin: 0.8rem 0 1.25rem;
  color: #fff;
  font-size: clamp(2rem, 3.7vw, 3.65rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.osp-support-hero p {
  max-width: 650px;
  margin: 0 0 1.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.osp-support-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.osp-support-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.osp-support-hero__proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.osp-support-hero__proof strong {
  margin-right: 0.45rem;
  color: var(--osp-gold);
}

/* Reusable parallax treatment based on the Parallax Header reference. */
.osp-header-animation {
  --osp-header-bg-y: 0px;
  --osp-header-bg-fade: 0;
  background-position: center calc(50% + var(--osp-header-bg-y));
  background-attachment: fixed;
  overflow: hidden;
  position: relative;
}

.osp-header-animation::before {
  background: #11181e;
  content: "";
  inset: 0;
  opacity: var(--osp-header-bg-fade);
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.osp-header-animation > .container {
  position: relative;
  z-index: 2;
}

.osp-header-animation .osp-support-hero__media {
  background-attachment: fixed;
  background-position: center;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .osp-header-animation {
    --osp-header-bg-fade: 0;
    background-attachment: scroll;
    background-position: center;
  }
  .osp-header-animation .osp-support-hero__media {
    background-attachment: scroll;
    transform: none;
    will-change: auto;
  }
  .osp-header-animation::before {
    display: none;
  }
}
.osp-support-paths {
  padding-bottom: 2rem;
}

.osp-support-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.osp-support-path {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.65rem;
  background: #fff;
  border: 1px solid var(--osp-line);
  box-shadow: 0 16px 38px rgba(25, 31, 38, 0.07);
  overflow: hidden;
}

.osp-support-path::after {
  content: "";
  position: absolute;
  right: -2.2rem;
  bottom: -2.2rem;
  width: 6rem;
  height: 6rem;
  border: 1rem solid rgba(215, 25, 32, 0.05);
  border-radius: 50%;
}

.osp-support-path > span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: var(--osp-red);
  color: #fff;
  font-weight: 900;
}

.osp-support-path h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.osp-support-path p {
  margin: 0;
  color: #626b73;
}

.osp-support-business {
  padding: 4.5rem 0;
  background: var(--osp-cream);
}

.osp-support-business__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  min-height: 520px;
  background: #182128;
  color: #fff;
  box-shadow: 0 24px 60px rgba(18, 24, 29, 0.18);
  overflow: hidden;
}

.osp-support-business__copy {
  padding: clamp(2rem, 5vw, 4.5rem);
  align-self: center;
}

.osp-support-business__copy h2 {
  margin: 0.7rem 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.osp-support-business__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.osp-support-business__copy ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.osp-support-business__copy li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(255, 255, 255, 0.84);
}

.osp-support-business__copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--osp-gold);
  font-weight: 900;
}

.osp-support-business__image {
  min-height: 420px;
}

.osp-support-business__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.osp-support-process {
  background: #fff;
}

.osp-support-process__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: support-step;
}

.osp-support-process__list li {
  position: relative;
  min-width: 0;
  padding: 1.6rem;
  background: var(--osp-cream);
  border-top: 4px solid var(--osp-red);
}

.osp-support-process__list li > span {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.2rem;
  background: #172027;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
}

.osp-support-process__list h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
}

.osp-support-process__list p {
  margin: 0;
  color: #626b73;
}

.osp-support-process__note {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: 1rem 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.35rem 1.6rem;
  background: #172027;
  color: #fff;
}

.osp-support-process__note strong {
  color: var(--osp-gold);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.osp-support-process__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.osp-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.osp-support-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1.2fr);
  min-width: 0;
  background: #fff;
  border: 1px solid #e7e2d8;
  box-shadow: 0 14px 34px rgba(25, 31, 38, 0.08);
  overflow: hidden;
}

.osp-support-card__image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #eceff1;
}

.osp-support-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.osp-support-card:hover img {
  transform: scale(1.04);
}

.osp-support-card__priority {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  padding: 0.35rem 0.6rem;
  background: #26323d;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osp-support-card__priority--urgent {
  background: #c9141c;
}

.osp-support-card__priority--important {
  background: #a45f00;
}

.osp-support-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 1.5rem;
}

.osp-section .osp-support-grid .osp-support-card__body > h2 {
  max-width: 100%;
  margin: 0 0 0.7rem;
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-transform: none;
  overflow-wrap: break-word;
  word-break: normal;
}

.osp-support-card__body p {
  color: #626b73;
  min-height: 0;
  margin-bottom: 1rem;
}

.osp-support-card__body .osp-text-link {
  margin-top: auto;
}

.osp-support-form {
  background: #fff;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(25, 31, 38, 0.1);
}

.osp-support-form label {
  display: grid;
  gap: 0.45rem;
  color: #29323a;
  font-weight: 800;
}

.osp-support-form__trap {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.osp-support-form__captcha {
  min-height: 76px;
  padding: 1rem;
  background: #f5f2ee;
  border: 1px solid #ded8d2;
}

.osp-support-form__captcha label {
  max-width: 360px;
}

.osp-support-form__captcha input {
  max-width: 180px;
}

.osp-support-form input, .osp-support-form select, .osp-support-form textarea {
  width: 100%;
  border: 1px solid #ccd2d8;
  background: #fff;
  padding: 0.8rem;
  color: #1d252d;
  font: inherit;
  font-weight: 400;
}

.osp-support-form__selection {
  padding: 0.75rem 1rem;
  margin: 0 0 0.8rem;
  background: #e9f7ee;
  border-left: 4px solid #2e8b57;
  color: #185c36;
  font-weight: 800;
}

.osp-support-form__selection--error {
  background: #fff0f0;
  border-left-color: #b5121b;
  color: #941019;
}

.osp-support-form button[disabled] {
  cursor: wait;
  opacity: 0.62;
}

.osp-support-form__privacy {
  color: #69727a;
  font-size: 0.82rem;
}

.osp-support-faq {
  background: #fff;
}

.osp-support-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.osp-support-faq__grid article {
  position: relative;
  padding: 1.55rem 1.65rem 1.55rem 2rem;
  border: 1px solid var(--osp-line);
  background: #fff;
  box-shadow: 0 12px 30px rgba(25, 31, 38, 0.05);
}

.osp-support-faq__grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--osp-red);
}

.osp-support-faq__grid h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
}

.osp-support-faq__grid p {
  margin: 0;
  color: #626b73;
}

.osp-support-tax {
  background: #172027;
  color: #fff;
}

.osp-support-tax .osp-kicker, .osp-support-tax h2 {
  color: #fff;
}

.osp-support-tax-card {
  height: 100%;
  padding: 1.75rem;
  background: #fff;
  color: #1d252d;
  border-top: 4px solid var(--osp-red);
}

.osp-support-tax-card > span {
  color: var(--osp-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osp-support-tax-card h3 {
  margin: 0.55rem 0 1rem;
}

.osp-support-tax-card p {
  color: #58636d;
}

.osp-support-tax-card ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.osp-support-tax-card li {
  position: relative;
  padding-left: 1.5rem;
  color: #46525c;
}

.osp-support-tax-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #198754;
  font-weight: 900;
}

.osp-support-tax__note {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.osp-support-tax__note a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .osp-support-hero {
    min-height: 590px;
  }
  .osp-support-hero__shade {
    background: linear-gradient(90deg, rgba(10, 15, 19, 0.97), rgba(10, 15, 19, 0.64));
  }
  .osp-support-paths__grid {
    grid-template-columns: 1fr;
  }
  .osp-support-business__panel {
    grid-template-columns: 1fr;
  }
  .osp-support-business__image {
    order: -1;
    min-height: 360px;
  }
  .osp-support-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .osp-support-card {
    grid-template-columns: 1fr;
  }
  .osp-support-card__image {
    min-height: 0;
    aspect-ratio: 16/10;
  }
}
@media (max-width: 767.98px) {
  .osp-support-hero {
    min-height: 0;
  }
  .osp-support-hero__media {
    opacity: 0.5;
    object-position: center;
  }
  .osp-support-hero__content {
    padding: 6rem 0 4rem;
  }
  .osp-support-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
  }
  .osp-support-grid, .osp-support-faq__grid {
    grid-template-columns: 1fr;
  }
  .osp-support-business {
    padding: 2rem 0;
  }
  .osp-support-business__image {
    min-height: 280px;
  }
}
@media (max-width: 575.98px) {
  .osp-support-hero__proof {
    display: grid;
    gap: 0.6rem;
  }
  .osp-support-form {
    padding: 1.25rem;
  }
  .osp-support-card__body {
    padding: 1.2rem;
  }
  .osp-support-card__body p {
    min-height: 0;
  }
  .osp-support-business__copy {
    padding: 1.6rem;
  }
  .osp-support-path {
    padding: 1.25rem;
  }
  .osp-support-process__list {
    grid-template-columns: 1fr;
  }
  .osp-support-process__note {
    grid-template-columns: 1fr;
  }
}
.osp-home-support {
  padding: 5rem 0;
  background: var(--osp-cream);
}

.osp-home-support__panel {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  min-height: 500px;
  background: #151e25;
  box-shadow: 0 24px 65px rgba(25, 31, 38, 0.18);
  overflow: hidden;
}

.osp-home-support__image {
  position: relative;
  min-height: 420px;
}

.osp-home-support__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, #151e25 100%);
}

.osp-home-support__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.osp-home-support__content {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
}

.osp-home-support__content h2 {
  margin: 0.7rem 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.osp-home-support__content p {
  color: rgba(255, 255, 255, 0.72);
}

.osp-home-support__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 1.8rem;
}

.osp-home-support__tags span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .osp-home-support__panel {
    grid-template-columns: 1fr;
  }
  .osp-home-support__image {
    min-height: 360px;
  }
  .osp-home-support__image::after {
    background: linear-gradient(0deg, #151e25 0%, transparent 42%);
  }
}
@media (max-width: 575.98px) {
  .osp-home-support {
    padding: 2rem 0;
  }
  .osp-home-support__image {
    min-height: 270px;
  }
  .osp-home-support__content {
    padding: 1.6rem;
  }
}
.osp-recruit-hero__note {
  max-width: 720px;
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.osp-recruit-benefits .osp-service-card {
  height: 100%;
}

.osp-recruit-benefits .osp-service-card > strong {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  margin-bottom: 1rem;
  background: rgba(215, 25, 32, 0.1);
  color: #b4161c;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.osp-recruit-timeline {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.osp-recruit-timeline li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.35rem;
  background: #fff;
  border-left: 4px solid #d71920;
  box-shadow: 0 12px 32px rgba(25, 31, 38, 0.08);
}

.osp-recruit-timeline li > span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: #1d252d;
  color: #fff;
  font-weight: 800;
}

.osp-recruit-timeline h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.osp-recruit-timeline p {
  margin: 0;
  color: #5f6871;
}

.weather-widget__status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
}

.weather-widget__status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #f0b429;
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.16);
}

.weather-widget__status[data-weather-state=live] .weather-widget__status-dot {
  background: #5bd48b;
  box-shadow: 0 0 0 4px rgba(91, 212, 139, 0.15);
}

.weather-widget__status[data-weather-state=offline] .weather-widget__status-dot {
  background: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}

@media (max-width: 575.98px) {
  .osp-recruit-timeline li {
    grid-template-columns: 2.5rem 1fr;
    padding: 1rem;
  }
  .osp-recruit-timeline li > span {
    width: 2.5rem;
    height: 2.5rem;
  }
}
/* Keep the AJAX transition visible without exposing the default blue loader. */
#pageContent .spinner-container.core-overlay {
  background: rgba(255, 255, 255, 0.72);
  min-height: 14rem;
}

#pageContent .spinner-container.core-overlay .spinner {
  border-color: rgba(215, 25, 32, 0.18);
  border-top-color: var(--osp-red);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.68);
}

body {
  color: var(--osp-ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  letter-spacing: 0;
  overflow-x: hidden;
}

a,
.nav-link,
[navurl] {
  cursor: pointer;
}

.osp-topbar {
  background: #111;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  padding: 0.46rem 0;
  position: relative;
  z-index: 1020;
}

.osp-topbar__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
}

.osp-topbar__item {
  align-items: center;
  display: inline-flex;
  gap: 0.45rem;
}

.osp-topbar__item::before {
  background: var(--osp-red);
  border-radius: 50%;
  content: "";
  height: 0.42rem;
  width: 0.42rem;
}

.osp-topbar__link {
  color: #fff;
  text-decoration: none;
}

.osp-topbar__social {
  align-items: center;
  display: inline-flex;
  gap: 0.45rem;
}

.osp-social-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  text-decoration: none;
  width: 30px;
}

.osp-social-link svg {
  fill: currentColor;
  height: 15px;
  width: 15px;
}

.osp-social-link:hover {
  background: var(--osp-red);
  color: #fff;
}

.osp-topbar__alerts {
  align-items: center;
  display: inline-flex;
  flex: 1 1 auto;
  gap: 0.4rem;
  justify-content: center;
  min-width: min(100%, 260px);
}

.osp-topbar__alert {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  max-width: 100%;
  min-height: 1.8rem;
  overflow: hidden;
  padding: 0.42rem 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.osp-topbar__alert--default,
.osp-topbar__alert--info {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.osp-topbar__alert--watch {
  background: rgba(245, 158, 11, 0.22);
  color: #fbbf24;
}

.osp-topbar__alert--warning,
.osp-topbar__alert--danger {
  background: rgba(215, 25, 32, 0.24);
  color: #fecaca;
}

.osp-navbar {
  background: #fff;
  border-bottom: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  min-height: 74px;
  z-index: 1030;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  will-change: transform;
}

.osp-navbar.is-scrolled {
  animation: osp-navbar-slide 0.28s ease;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1040;
}

.osp-brand img {
  display: block;
  height: 52px;
  width: auto;
}

.osp-brand {
  align-items: center;
  display: inline-flex;
  gap: 0.62rem;
}

.osp-brand .osp-brand__mark {
  background: #fff;
  border-radius: 50%;
  height: 44px;
  padding: 3px;
  width: 44px;
}

.osp-brand__text {
  color: var(--osp-ink);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.08;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  text-transform: none;
  white-space: nowrap;
}

.osp-navbar .nav-link {
  align-items: center;
  color: #171717;
  display: flex;
  font-weight: 700;
  min-height: 3.15rem;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  font-size: 0.86rem;
}

@media (min-width: 992px) {
  .osp-navbar .navbar-nav {
    align-items: center;
  }
}
@media (max-width: 991.98px) {
  .osp-navbar .navbar-nav .osp-nav-home {
    justify-content: flex-start;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .osp-brand {
    gap: 0.48rem;
  }
  .osp-brand .osp-brand__mark {
    height: 40px;
    width: 40px;
  }
  .osp-brand__text {
    font-size: 0.9rem;
  }
}
.osp-navbar .nav-link:hover,
.osp-navbar .nav-link.active {
  color: var(--osp-red);
}

.osp-navbar .nav-link.dropdown-toggle {
  background: transparent;
  border: 0;
}

.osp-nav-dropdown__menu,
.osp-language-menu__list {
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 0;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  margin-top: 0.45rem;
  min-width: 190px;
  padding: 0.45rem;
}

.osp-nav-dropdown__menu .dropdown-item,
.osp-language-menu__list .dropdown-item {
  color: var(--osp-ink);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.66rem 0.75rem;
}

.osp-nav-dropdown__menu .dropdown-item:hover,
.osp-nav-dropdown__menu .dropdown-item.active,
.osp-language-menu__list .dropdown-item:hover,
.osp-language-menu__list .dropdown-item.active {
  background: rgba(215, 25, 32, 0.08);
  color: var(--osp-red);
}

.osp-language-menu__toggle {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.22);
  border-radius: 0;
  color: var(--osp-ink);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 0.42rem;
  line-height: 1;
  padding: 0.55rem 0.62rem;
}

.osp-language-menu__toggle:hover,
.osp-language-menu__toggle:focus {
  background: #fff;
  border-color: var(--osp-red);
  box-shadow: none;
  color: var(--osp-red);
}

.osp-language-menu__list .dropdown-item {
  align-items: center;
  display: flex;
  gap: 0.6rem;
}

.osp-language-menu__list .lang-flag-img {
  height: 14px;
  width: 18px;
}

@media (hover: hover) and (min-width: 992px) {
  .osp-nav-dropdown > .dropdown-menu,
  .osp-language-menu > .dropdown-menu {
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transform-origin: top center;
    transition: opacity 0.16s ease, transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.22s;
    visibility: hidden;
  }
  .osp-nav-dropdown:hover > .dropdown-menu,
  .osp-nav-dropdown:focus-within > .dropdown-menu,
  .osp-language-menu:hover > .dropdown-menu,
  .osp-language-menu:focus-within > .dropdown-menu,
  .osp-nav-dropdown > .dropdown-menu.show,
  .osp-language-menu > .dropdown-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
    visibility: visible;
  }
  .osp-nav-dropdown > .dropdown-menu,
  .osp-language-menu > .dropdown-menu {
    margin-top: 0;
  }
}
@media (max-width: 991.98px) {
  .osp-navbar .navbar-collapse {
    transition: height 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .osp-nav-dropdown > .dropdown-menu,
  .osp-language-menu > .dropdown-menu {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
    transform: translateY(-6px);
    transition: max-height 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.18s ease, padding 0.3s ease, transform 0.3s ease;
  }
  .osp-nav-dropdown > .dropdown-menu.show,
  .osp-language-menu > .dropdown-menu.show {
    max-height: 20rem;
    opacity: 1;
    padding-bottom: 0.45rem;
    padding-top: 0.45rem;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .osp-navbar .navbar-collapse,
  .osp-nav-dropdown > .dropdown-menu,
  .osp-language-menu > .dropdown-menu {
    transition: none !important;
  }
}
.osp-navbar .navbar-toggler {
  border-color: rgba(21, 21, 21, 0.22);
}

.osp-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.osp-navbar__call {
  align-items: center;
  background: var(--osp-red);
  color: #fff;
  gap: 0.65rem;
  margin-left: 1rem;
  min-height: 54px;
  padding: 0.7rem 0.95rem;
}

.osp-navbar__call span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osp-navbar__call strong {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.osp-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(16, 16, 16, 0.92), rgba(16, 16, 16, 0.62), rgba(155, 16, 24, 0.58)), url("../img/sample2.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.osp-hero .container {
  position: relative;
  z-index: 1;
}

.osp-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: repeating-linear-gradient(90deg, var(--osp-red) 0 120px, var(--osp-gold) 120px 150px);
}

.osp-kicker {
  color: var(--osp-gold);
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.osp-kicker--dark {
  color: var(--osp-red);
}

.osp-hero h1,
.osp-page-head h1 {
  font-size: clamp(1.75rem, 3.1vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

.osp-section h2,
.osp-blog-card h2,
.osp-contact-panel h2,
.osp-recruit-panel h2,
.osp-founders-list h3,
.osp-home-service-card h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

.osp-section h3,
.osp-blog-card h3,
.osp-news-card h3 {
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
}

.osp-hero__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
  max-width: 680px;
  margin-bottom: 2rem;
}

.osp-btn {
  border-radius: 0;
  border: 2px solid transparent;
  font-weight: 800;
  padding: 0.95rem 1.35rem;
  text-transform: uppercase;
}

.osp-btn--primary {
  background: var(--osp-red);
  color: #fff;
}

.osp-btn--primary:hover {
  background: var(--osp-red-dark);
  color: #fff;
}

.osp-btn--light {
  background: #fff;
  color: var(--osp-ink);
}

.osp-btn--outline {
  border-color: var(--osp-red);
  color: var(--osp-red);
}

.osp-btn--outline:hover {
  background: var(--osp-red);
  color: #fff;
}

.osp-emergency-card {
  background: var(--osp-red);
  color: #fff;
  padding: 2rem;
  border: 8px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  animation: osp-float 5.5s ease-in-out infinite;
}

.osp-emergency-card__label {
  font-weight: 800;
  text-transform: uppercase;
}

.osp-emergency-card__number {
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.osp-feature-strip {
  margin-top: -58px;
  position: relative;
  z-index: 2;
}

.osp-feature-strip__item {
  background: #fff;
  border-right: 1px solid var(--osp-line);
  min-height: 116px;
  padding: 1.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.osp-feature-strip__item strong,
.osp-feature-strip__item span {
  display: block;
}

.osp-feature-strip__item strong {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.osp-feature-strip__item span {
  color: var(--osp-muted);
}

.osp-section {
  padding: 6rem 0;
}

.osp-section--muted {
  background: var(--osp-cream);
}

.osp-section h2,
.osp-video-cta h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.85rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.osp-section p {
  color: var(--osp-muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.osp-checks {
  display: grid;
  gap: 0.75rem;
}

.osp-checks span {
  background: #fff;
  border-left: 5px solid var(--osp-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-weight: 700;
  padding: 1rem 1.15rem;
}

.osp-image-stack {
  position: relative;
}

.osp-image-stack img,
.osp-rounded-image,
.osp-gallery-grid img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.osp-image-stack img {
  aspect-ratio: 4/3;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.osp-image-stack:hover img {
  transform: scale(1.07);
}

.osp-image-stack__badge {
  background: var(--osp-red);
  bottom: -24px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  left: -24px;
  padding: 1.1rem 1.4rem;
  position: absolute;
  text-transform: uppercase;
}

.osp-section-heading {
  align-items: end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.osp-news-card,
.osp-service-card,
.osp-contact-panel {
  background: #fff;
  border: 1px solid var(--osp-line);
  height: 100%;
  padding: 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.osp-news-card:hover,
.osp-service-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.osp-news-card__date {
  color: var(--osp-red);
  font-weight: 900;
  margin-bottom: 0.9rem;
}

.osp-news-card h2,
.osp-news-card h3 {
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.osp-news-card a {
  color: inherit;
  text-decoration: none;
}

.osp-news-card__thumb {
  display: block;
  margin: -1.6rem -1.6rem 1.2rem;
  overflow: hidden;
}

.osp-news-card__thumb img {
  aspect-ratio: 4/3;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}

.osp-news-card:hover .osp-news-card__thumb img {
  transform: scale(1.08);
}

.osp-services-section {
  background: radial-gradient(circle at top left, rgba(215, 25, 32, 0.08), transparent 32%), #fff;
}

.osp-firdip-service {
  background: #fff;
  border: 1px solid var(--osp-line);
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  padding: 1.6rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.osp-firdip-service::before {
  background: var(--osp-red);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.osp-firdip-service:hover {
  border-color: rgba(215, 25, 32, 0.32);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.osp-firdip-service:hover::before {
  transform: scaleX(1);
}

.osp-firdip-service__icon {
  align-items: center;
  background: var(--osp-cream);
  color: var(--osp-red);
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 900;
  height: 72px;
  justify-content: center;
  margin-bottom: 1.4rem;
  width: 72px;
}

.osp-firdip-service h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.osp-firdip-service p {
  color: var(--osp-muted);
  line-height: 1.7;
}

.osp-firdip-service__image {
  bottom: 0;
  left: 0;
  margin-top: 1.4rem;
  overflow: hidden;
  position: absolute;
  right: 0;
}

.osp-firdip-service__image img {
  aspect-ratio: 16/8;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease, filter 0.35s ease;
  width: 100%;
}

.osp-firdip-service:hover .osp-firdip-service__image img {
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.1);
}

.osp-parallax-band {
  align-items: center;
  background: linear-gradient(90deg, rgba(14, 14, 14, 0.88), rgba(14, 14, 14, 0.45)), url("../img/osp/cwiczenia-osp-kaszyce-wielkie-czerwiec-2025.jpg") center/cover fixed no-repeat;
  color: #fff;
  display: flex;
  min-height: 520px;
  padding: 6rem 0;
}

.osp-parallax-band__content {
  max-width: 720px;
}

.osp-parallax-band h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.osp-parallax-band p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  line-height: 1.8;
}

.osp-news-card span {
  color: var(--osp-muted);
  font-weight: 700;
}

.osp-video-cta {
  background: linear-gradient(90deg, rgba(157, 16, 24, 0.94), rgba(157, 16, 24, 0.82)), url("../img/sample3.jpg") center/cover no-repeat;
  color: #fff;
  padding: 5rem 0;
}

.osp-video-cta p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  margin: 0;
}

.osp-page-head {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.7)), url("../img/sample3.jpg") center/cover no-repeat;
  color: #fff;
  padding: 7rem 0 5rem;
}

.osp-page-head p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  max-width: 720px;
}

.osp-rounded-image {
  aspect-ratio: 5/4;
}

.osp-stat-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.osp-stat-row div {
  background: var(--osp-cream);
  flex: 1;
  padding: 1.25rem;
}

.osp-stat-row strong,
.osp-stat-row span,
.osp-service-card strong {
  display: block;
}

.osp-stat-row strong {
  color: var(--osp-red);
  font-size: 2rem;
  font-weight: 900;
}

.osp-stat-row span {
  color: var(--osp-muted);
}

.osp-service-card strong {
  color: var(--osp-red);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.osp-service-card h2,
.osp-contact-panel h2 {
  font-size: 1.35rem;
  margin-top: 1rem;
}

.osp-gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.osp-gallery-grid img {
  aspect-ratio: 1/1;
  transition: transform 0.6s ease, filter 0.35s ease;
}

.osp-gallery-grid img:hover {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.03);
}

.osp-contact-panel {
  border-top: 5px solid var(--osp-red);
}

.osp-contact-panel h2 {
  margin-bottom: 0.75rem;
}

.osp-contact-address {
  font-style: normal;
}

.osp-contact-address p {
  margin-bottom: 0.25rem;
}

.osp-contact-panel--alarm {
  background: var(--osp-red);
  border-color: var(--osp-red);
  color: #fff;
}

.osp-contact-panel--alarm h2 {
  color: #fff;
}

.osp-contact-panel--alarm p {
  color: rgba(255, 255, 255, 0.9);
}

.osp-contact-alarm-number {
  color: #fff;
  font-size: clamp(4rem, 9vw, 6rem);
  font-weight: 900;
  line-height: 1;
  margin: 0.5rem 0 1rem;
}

.osp-contact-panel--dark {
  background: #151515;
  border-top-color: var(--osp-gold);
  color: #fff;
}

.osp-contact-panel--dark p {
  color: rgba(255, 255, 255, 0.76);
}

.osp-contact-panel--dark h2 {
  color: #fff;
}

.osp-contact-hero {
  align-items: flex-end;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.58), rgba(151, 13, 20, 0.74)), url("../img/osp/cwiczenia-osp-kaszyce-wielkie-czerwiec-2025.jpg") center/cover fixed;
  color: #fff;
  display: flex;
  min-height: clamp(520px, 72vh, 740px);
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
}

.osp-contact-hero::after {
  background: var(--osp-red);
  bottom: 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
}

.osp-contact-hero h1 {
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.92;
  margin: 0.35rem 0 1rem;
  max-width: 880px;
  text-transform: uppercase;
}

.osp-contact-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
  max-width: 720px;
}

.osp-contact-hero__alarm {
  background: rgba(151, 13, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.osp-contact-hero__alarm span {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osp-contact-hero__alarm strong {
  color: #fff;
  display: block;
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0.55rem 0 0.8rem;
}

.osp-contact-hero__alarm p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  margin: 0;
}

.osp-contact-main {
  background: linear-gradient(180deg, #fff 0, #fff 56%, var(--osp-cream) 56%, var(--osp-cream) 100%);
}

.osp-contact-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

.osp-contact-stack {
  display: grid;
  gap: 1.5rem;
}

.osp-contact-card,
.osp-contact-note {
  background: #fff;
  border: 1px solid var(--osp-line);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  padding: clamp(1.35rem, 3vw, 2rem);
  position: relative;
}

.osp-contact-card::before,
.osp-contact-note::before {
  background: var(--osp-red);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.osp-contact-card--primary {
  background: linear-gradient(135deg, rgba(151, 13, 20, 0.08), transparent 34%), #fff;
  min-height: 100%;
}

.osp-contact-card__label {
  color: var(--osp-red);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.osp-contact-card h2 {
  color: #171e24;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.osp-contact-card p {
  color: #59616a;
  line-height: 1.7;
}

.osp-contact-card address {
  display: grid;
  font-style: normal;
  gap: 0.35rem;
  margin: 0 0 1.5rem;
}

.osp-contact-card address strong {
  color: #171e24;
  font-size: 1.05rem;
}

.osp-contact-card address span {
  color: #59616a;
  font-weight: 700;
}

.osp-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.osp-contact-link {
  align-items: center;
  border-top: 1px solid rgba(23, 30, 36, 0.12);
  color: #171e24;
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  padding: 0.85rem 0;
  text-decoration: none;
}

.osp-contact-link::after {
  color: var(--osp-red);
  content: ">";
  font-weight: 900;
}

.osp-contact-link:hover {
  color: var(--osp-red);
}

.osp-contact-card--dark {
  background: #171e24;
  border-color: #171e24;
  color: #fff;
}

.osp-contact-card--dark::before {
  background: var(--osp-gold);
}

.osp-contact-card--dark h2,
.osp-contact-card--dark .osp-contact-card__label {
  color: #fff;
}

.osp-contact-registry {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.osp-contact-registry div {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
}

.osp-contact-registry dt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osp-contact-registry dd {
  color: #fff;
  font-weight: 900;
  margin: 0;
}

.osp-contact-band {
  background: linear-gradient(90deg, rgba(23, 30, 36, 0.94), rgba(23, 30, 36, 0.72), rgba(151, 13, 20, 0.82)), url("../img/firdip/backgrounds-cta-bg.png") center/cover fixed;
  color: #fff;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.osp-contact-band__inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.osp-contact-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  margin: 0.35rem 0 1rem;
  text-transform: uppercase;
}

.osp-contact-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 780px;
}

.osp-contact-info {
  background: var(--osp-cream);
}

.osp-contact-note {
  min-height: 100%;
}

.osp-contact-note strong {
  color: #171e24;
  display: block;
  font-size: 1.18rem;
  font-weight: 900;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.osp-contact-note p {
  color: #59616a;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .osp-map-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .osp-map-toolbar h2 {
    max-width: 720px;
  }
  .osp-map-actions {
    justify-content: flex-start;
  }
  .osp-map-filters {
    justify-content: flex-start;
  }
}
@media (max-width: 991.98px) {
  .osp-contact-hero {
    background-attachment: scroll;
    min-height: auto;
    padding: 5.5rem 0 4rem;
  }
  .osp-contact-layout {
    grid-template-columns: 1fr;
  }
  .osp-contact-band {
    background-attachment: scroll;
  }
  .osp-contact-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .osp-contact-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .osp-contact-actions .osp-btn,
  .osp-contact-band .osp-btn {
    justify-content: center;
    width: 100%;
  }
  .osp-contact-registry div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
}
.osp-blog-article {
  background: #fff;
  border: 1px solid var(--osp-line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.osp-blog-grid-section {
  background: radial-gradient(circle at 100% 0, rgba(215, 25, 32, 0.08), transparent 32%), linear-gradient(180deg, #fff 0, #fff 54%, var(--osp-cream) 54%, var(--osp-cream) 100%);
}

.osp-blog-grid-head {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2.2rem;
}

.osp-blog-grid-head h2 {
  margin-bottom: 0;
}

.osp-blog-grid-head p {
  max-width: 430px;
}

.osp-blog-card {
  background: #fff;
  border: 1px solid var(--osp-line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.osp-blog-card:hover {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
  transform: translateY(-8px);
}

.osp-blog-card__image {
  display: block;
  overflow: hidden;
  position: relative;
}

.osp-blog-card__image::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease;
}

.osp-blog-card:hover .osp-blog-card__image::after {
  opacity: 1;
}

.osp-blog-card__image img {
  aspect-ratio: 4/3;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s ease;
  width: 100%;
}

.osp-blog-card:hover .osp-blog-card__image img {
  transform: scale(1.09);
}

.osp-blog-card__content {
  padding: 1.45rem;
}

.osp-blog-card__meta {
  color: var(--osp-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.osp-blog-card__meta li:first-child {
  color: var(--osp-red);
}

.osp-blog-card__meta a,
.osp-blog-article__meta a {
  color: inherit;
  text-decoration: none;
}

.osp-blog-card__meta a:hover,
.osp-blog-article__meta a:hover {
  color: var(--osp-red-dark);
}

.osp-blog-card h2 {
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.osp-blog-card a {
  color: inherit;
  text-decoration: none;
}

.osp-blog-card p {
  color: var(--osp-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.osp-blog-card__link {
  align-items: center;
  color: var(--osp-red) !important;
  display: inline-flex;
  font-weight: 900;
  gap: 0.45rem;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.osp-blog-card__link span {
  transition: transform 0.2s ease;
}

.osp-blog-card:hover .osp-blog-card__link span {
  transform: translateX(5px);
}

.osp-blog-article__meta,
.osp-blog-article__tags {
  color: var(--osp-red);
  display: flex;
  flex-wrap: wrap;
  font-weight: 900;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.osp-blog-article h1 {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.35rem;
  text-transform: uppercase;
}

.osp-blog-toolbar,
.osp-blog-article-actions {
  display: flex;
  margin: 0 0 1.5rem;
}

.osp-blog-article-actions {
  border-top: 1px solid var(--osp-line);
  margin: 2.25rem 0 0;
  padding-top: 1.25rem;
}

.osp-blog-back {
  align-items: center;
  border: 2px solid var(--osp-red);
  color: var(--osp-red);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 900;
  min-height: 44px;
  padding: 0.7rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.osp-blog-back:hover {
  background: var(--osp-red);
  color: #fff;
}

.osp-blog-pagination {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.osp-blog-pagination__item {
  background: #fff;
  border: 1px solid var(--osp-line);
  color: var(--osp-ink);
  display: block;
  min-height: 128px;
  padding: 1.2rem;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.osp-blog-pagination__item:hover {
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  color: var(--osp-ink);
  transform: translateY(-2px);
}

.osp-blog-pagination__item span {
  color: var(--osp-red);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.osp-blog-pagination__item strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.28;
}

.osp-blog-pagination__item--next {
  text-align: right;
}

.osp-blog-pagination__item--empty {
  visibility: hidden;
}

.osp-blog-article .cms-page-content {
  color: #333;
  font-size: 1.06rem;
  line-height: 1.85;
}

.osp-blog-article .cms-page-content > *:first-child {
  margin-top: 0;
}

.osp-blog-article .cms-page-content p {
  color: #333;
  margin: 0 0 1.25rem;
}

.osp-blog-article .cms-page-content h2,
.osp-blog-article .cms-page-content h3,
.osp-blog-article .cms-page-content h4 {
  color: var(--osp-ink);
  font-weight: 900;
  line-height: 1.12;
  margin: 2.25rem 0 1rem;
  text-transform: none;
}

.osp-blog-article .cms-page-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.osp-blog-article .cms-page-content h3 {
  font-size: clamp(1.28rem, 2.4vw, 1.75rem);
}

.osp-blog-article .cms-page-content a {
  color: var(--osp-red);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.osp-blog-article .cms-page-content hr {
  border: 0;
  border-top: 1px solid var(--osp-line);
  margin: 2.4rem 0;
  opacity: 1;
}

.osp-blog-article .cms-page-content img,
.osp-blog-hero-image img {
  display: block;
  height: auto;
  max-width: 100%;
}

.osp-blog-article .cms-page-content img {
  cursor: zoom-in;
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, 560px);
  width: auto;
}

.osp-blog-hero-image {
  margin: 0 auto 2rem;
  max-width: 900px;
  overflow: hidden;
}

.osp-blog-hero-image img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.osp-blog-article .cms-page-content figure {
  margin: 1.75rem auto;
  max-width: 620px;
}

.osp-blog-article .cms-page-content figure:not(.osp-blog-hero-image) img {
  border: 1px solid var(--osp-line);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.osp-blog-article .cms-page-content .wp-block-gallery,
.osp-blog-article .cms-page-content .gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0;
  max-width: none;
}

.osp-blog-article .cms-page-content .wp-block-gallery figure,
.osp-blog-article .cms-page-content .gallery figure {
  margin: 0;
  max-width: none;
}

.osp-blog-article .cms-page-content .wp-block-gallery img,
.osp-blog-article .cms-page-content .gallery img {
  aspect-ratio: 4/3;
  max-width: none;
  object-fit: cover;
  width: 100%;
}

.osp-blog-article .cms-page-content #ez-toc-container {
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.08), rgba(247, 243, 235, 0.96));
  border: 1px solid var(--osp-line);
  border-left: 6px solid var(--osp-red);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin: 0 0 2.2rem;
  padding: 1.25rem 1.35rem;
}

.osp-blog-article .cms-page-content .ez-toc-title {
  color: var(--osp-ink);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.osp-blog-article .cms-page-content .ez-toc-title-container {
  align-items: center;
  border-bottom: 1px solid rgba(215, 25, 32, 0.18);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
}

.osp-blog-article .cms-page-content .ez-toc-title-toggle {
  display: none;
}

.osp-blog-article .cms-page-content #ez-toc-container ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.osp-blog-article .cms-page-content #ez-toc-container li {
  margin: 0;
}

.osp-blog-article .cms-page-content #ez-toc-container li + li {
  margin-top: 0.45rem;
}

.osp-blog-article .cms-page-content #ez-toc-container ul ul {
  border-left: 1px solid rgba(215, 25, 32, 0.18);
  margin-top: 0.45rem;
  padding-left: 0.9rem;
}

.osp-blog-article .cms-page-content #ez-toc-container a {
  align-items: flex-start;
  color: var(--osp-ink);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  gap: 0.45rem;
  line-height: 1.35;
  text-decoration: none;
}

.osp-blog-article .cms-page-content #ez-toc-container a::before {
  background: var(--osp-red);
  content: "";
  flex: 0 0 auto;
  height: 0.42rem;
  margin-top: 0.45rem;
  width: 0.42rem;
}

.osp-blog-article .cms-page-content #ez-toc-container a:hover {
  color: var(--osp-red);
}

.osp-lightbox {
  align-items: center;
  background: rgba(10, 10, 10, 0.86);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: clamp(1rem, 4vw, 3rem);
  pointer-events: none;
  position: fixed;
  transition: opacity 0.18s ease;
  z-index: 3000;
}

.osp-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.osp-lightbox__figure {
  margin: 0;
  max-height: 92vh;
  max-width: min(1120px, 96vw);
}

.osp-lightbox__image {
  background: #111;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  display: block;
  max-height: calc(92vh - 3rem);
  max-width: 100%;
  object-fit: contain;
}

.osp-lightbox__caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  margin-top: 0.75rem;
  text-align: center;
}

.osp-lightbox__close {
  align-items: center;
  background: var(--osp-red);
  border: 0;
  color: #fff;
  display: inline-flex;
  font-size: 2rem;
  height: 2.75rem;
  justify-content: center;
  line-height: 1;
  position: fixed;
  right: 1.25rem;
  top: 1.25rem;
  width: 2.75rem;
  z-index: 1;
}

.osp-lightbox__close:hover {
  background: var(--osp-red-dark);
}

body.osp-lightbox-open {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .osp-blog-article .cms-page-content .wp-block-gallery,
  .osp-blog-article .cms-page-content .gallery {
    grid-template-columns: 1fr;
  }
  .osp-blog-article .cms-page-content #ez-toc-container {
    padding: 1rem;
  }
  .osp-blog-article .cms-page-content img,
  .osp-blog-article .cms-page-content figure {
    max-width: 100%;
  }
  .osp-blog-article .cms-page-content img {
    width: 100%;
  }
  .osp-blog-pagination {
    grid-template-columns: 1fr;
  }
  .osp-blog-pagination__item--empty {
    display: none;
  }
  .osp-blog-pagination__item--next {
    text-align: left;
  }
}
.osp-about-two {
  background: #fff;
}

.osp-about-two__content h2,
.osp-why-section h2 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  font-weight: 900;
  line-height: 0.98;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.osp-about-callout {
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.94), rgba(159, 16, 24, 0.96)), url("../img/osp/08-2024-pozar-budynku-gospodarczego-w-miejscowosci-wszemirow.jpg") center/cover;
  color: #fff;
  margin: 1.5rem 0;
  padding: 1.4rem;
  position: relative;
}

.osp-about-callout strong,
.osp-about-callout span {
  display: block;
}

.osp-about-callout strong {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.osp-about-callout span {
  color: rgba(255, 255, 255, 0.86);
}

.osp-about-checkgrid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.osp-about-checkgrid span {
  background: var(--osp-cream);
  border-left: 4px solid var(--osp-red);
  font-weight: 800;
  padding: 0.9rem;
}

.osp-about-collage {
  min-height: 620px;
  position: relative;
}

.osp-about-collage__main,
.osp-about-collage__small {
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  object-fit: cover;
  position: absolute;
}

.osp-about-collage__main {
  height: 520px;
  left: 0;
  top: 0;
  width: 78%;
}

.osp-about-collage__small {
  border: 12px solid #fff;
  bottom: 18px;
  height: 300px;
  right: 0;
  width: 48%;
}

.osp-about-collage__badge {
  align-items: center;
  background: var(--osp-red);
  bottom: 72px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 150px;
  justify-content: center;
  left: 28px;
  padding: 1rem;
  position: absolute;
  text-align: center;
  width: 150px;
}

.osp-about-collage__badge strong {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.osp-about-collage__badge span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.osp-about-facts {
  background: #151515;
  color: #fff;
  padding: 3rem 0;
}

.osp-about-fact {
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  padding: 1.5rem;
}

.osp-about-fact strong {
  color: var(--osp-gold);
  display: block;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.osp-about-fact span {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-weight: 800;
  margin-top: 0.7rem;
  text-transform: uppercase;
}

.osp-why-section {
  background: radial-gradient(circle at top left, rgba(215, 25, 32, 0.08), transparent 30%), var(--osp-cream);
}

.osp-why-list {
  display: grid;
  gap: 1rem;
}

.osp-why-item {
  align-items: start;
  background: #fff;
  border: 1px solid var(--osp-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.osp-why-item:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.osp-why-item div {
  align-items: center;
  background: var(--osp-red);
  color: #fff;
  display: flex;
  font-size: 1.2rem;
  font-weight: 900;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.osp-why-item h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.osp-why-item p {
  margin: 0;
}

.osp-history-intro {
  background: #fff;
}

.osp-history-note {
  background: var(--osp-cream);
  border-left: 6px solid var(--osp-red);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.osp-history-note h2,
.osp-history-timeline h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.osp-history-note p,
.osp-history-timeline p {
  color: var(--osp-muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.osp-history-year {
  align-items: center;
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.95), rgba(159, 16, 24, 0.92)), url("../img/osp/zalozyciele-osp-kaszyce-wielkie.jpeg") center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 2rem;
  text-align: center;
}

.osp-history-year strong {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.osp-history-year span {
  display: block;
  font-weight: 900;
  max-width: 360px;
  text-transform: uppercase;
}

.osp-history-founders {
  background: var(--osp-cream);
}

.osp-history-photo {
  background: #fff;
  border: 1px solid var(--osp-line);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.12);
  margin: 0;
  overflow: hidden;
}

.osp-history-photo img {
  display: block;
  width: 100%;
}

.osp-history-photo figcaption {
  color: var(--osp-muted);
  font-size: 0.95rem;
  padding: 1rem 1.2rem;
}

.osp-founders-list {
  background: #151515;
  color: #fff;
  padding: 1.5rem;
  position: sticky;
  top: 110px;
}

.osp-founders-list h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.osp-founders-list ol {
  counter-reset: founders;
  list-style: none;
  margin: 0;
  padding: 0;
}

.osp-founders-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  counter-increment: founders;
  display: grid;
  gap: 0.15rem;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  padding: 0.62rem 0;
}

.osp-founders-list li::before {
  color: var(--osp-gold);
  content: counter(founders, decimal-leading-zero);
  font-weight: 900;
}

.osp-founders-list strong,
.osp-founders-list span {
  display: block;
}

.osp-founders-list strong {
  font-weight: 900;
}

.osp-founders-list span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.osp-founders-list p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 1rem 0;
}

.osp-founders-list a {
  color: var(--osp-gold);
  font-weight: 900;
  text-decoration: none;
}

.osp-history-timeline {
  background: #fff;
}

.osp-history-steps {
  display: grid;
  gap: 1rem;
}

.osp-history-steps article {
  background: var(--osp-cream);
  border-left: 5px solid var(--osp-red);
  padding: 1.2rem;
}

.osp-history-steps span {
  color: var(--osp-red);
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.osp-history-steps strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.osp-history-steps p {
  margin: 0.35rem 0 0;
}

@media (max-width: 991.98px) {
  .osp-founders-list {
    position: static;
  }
}
.osp-footer {
  background: #11171d;
  padding: 4rem 0 1.5rem;
}

.osp-footer .osp-social-link {
  background: rgba(255, 255, 255, 0.08);
}

.osp-footer .osp-social-link:hover {
  background: var(--osp-red);
}

.osp-footer__brand {
  text-decoration: none;
}

.osp-footer__logo {
  height: auto;
  max-width: min(100%, 250px);
  width: clamp(170px, 20vw, 250px);
}

.osp-footer__legal-link {
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.osp-footer__legal-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.osp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
}

.osp-footer__kgw {
  align-items: center;
  background: #faf8f3;
  border-left: 4px solid #c9272c;
  color: #252522;
  display: flex;
  gap: 1.15rem;
  margin-top: 2.5rem;
  max-width: 620px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.osp-footer__kgw:hover {
  color: #252522;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.osp-footer__kgw img {
  background: #fff;
  height: 82px;
  object-fit: contain;
  width: 82px;
}

.osp-footer__kgw span,
.osp-footer__kgw strong,
.osp-footer__kgw small,
.osp-footer__kgw em {
  display: block;
}

.osp-footer__kgw small {
  color: #526b45;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.osp-footer__kgw strong {
  color: #252522;
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.osp-footer__kgw em {
  color: #c9272c;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  margin-top: 0.25rem;
}

@media (max-width: 575.98px) {
  .osp-footer__kgw {
    align-items: flex-start;
  }
  .osp-footer__kgw img {
    height: 66px;
    width: 66px;
  }
}
@media (max-width: 991.98px) {
  .osp-hero {
    min-height: auto;
    padding: 5rem 0;
  }
  .osp-section {
    padding: 4rem 0;
  }
  .osp-section-heading {
    align-items: start;
    flex-direction: column;
  }
  .osp-parallax-band {
    background-attachment: scroll;
  }
  .osp-blog-grid-head {
    align-items: start;
    flex-direction: column;
  }
  .osp-about-collage {
    min-height: auto;
  }
  .osp-about-collage__main,
  .osp-about-collage__small {
    position: relative;
    width: 100%;
  }
  .osp-about-collage__main {
    height: auto;
    aspect-ratio: 4/3;
  }
  .osp-about-collage__small {
    bottom: auto;
    height: auto;
    margin-top: 1rem;
    right: auto;
    aspect-ratio: 16/10;
  }
  .osp-about-collage__badge {
    bottom: 28px;
    left: 28px;
  }
}
body.osp-mode-night {
  background: #0f131b;
  color: #e7edf4;
}

body.osp-mode-night .osp-navbar {
  background: #fff;
  border-bottom-color: transparent;
}

body.osp-mode-night .osp-navbar .nav-link,
body.osp-mode-night .osp-brand__text {
  color: var(--osp-ink);
}

body.osp-mode-night .osp-navbar .nav-link:hover,
body.osp-mode-night .osp-navbar .nav-link.active {
  color: var(--osp-red);
}

body.osp-mode-night .osp-section--muted,
body.osp-mode-night .osp-feature-strip__item,
body.osp-mode-night .osp-news-card,
body.osp-mode-night .osp-service-card,
body.osp-mode-night .osp-contact-panel {
  background: #fff;
  border-color: var(--osp-line);
  color: var(--osp-ink);
}

body.osp-mode-night .osp-section p,
body.osp-mode-night .osp-news-card span,
body.osp-mode-night .osp-contact-panel p,
body.osp-mode-night .osp-service-card p {
  color: #59616a;
}

body.osp-mode-night .osp-home-features,
body.osp-mode-night .osp-home-about {
  background: #fff;
  color: var(--osp-ink);
}

body.osp-mode-night .osp-home-feature {
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
  color: var(--osp-ink);
}

body.osp-mode-night .osp-home-feature strong,
body.osp-mode-night .osp-home-about__content h2,
body.osp-mode-night .osp-home-about__features strong {
  color: #151515;
}

body.osp-mode-night .osp-home-feature span,
body.osp-mode-night .osp-home-about__content p,
body.osp-mode-night .osp-home-about__features span {
  color: #59616a;
}

body.osp-mode-night .osp-home-feature:hover {
  background: linear-gradient(135deg, #151515, #2a1113);
  color: #fff;
}

body.osp-mode-night .osp-home-feature:hover strong {
  color: #fff;
}

body.osp-mode-night .osp-home-feature:hover span {
  color: rgba(255, 255, 255, 0.72);
}

body.osp-mode-night .osp-home-services,
body.osp-mode-night .osp-home-why,
body.osp-mode-night .osp-home-blog,
body.osp-mode-night .osp-home-gallery {
  color: var(--osp-ink);
}

body.osp-mode-night .osp-home-services,
body.osp-mode-night .osp-home-blog {
  background: radial-gradient(circle at top left, rgba(215, 25, 32, 0.08), transparent 32%), #fff;
}

body.osp-mode-night .osp-home-gallery {
  background: linear-gradient(180deg, #fff, #f6f8fa);
}

body.osp-mode-night .osp-home-why {
  background: var(--osp-cream);
}

body.osp-mode-night .osp-home-service-card,
body.osp-mode-night .osp-home-service-card div,
body.osp-mode-night .osp-home-why__grid article,
body.osp-mode-night .osp-home-gallery__item,
body.osp-mode-night .osp-news-card {
  background: #fff;
  color: var(--osp-ink);
}

body.osp-mode-night .osp-section-heading h2,
body.osp-mode-night .osp-home-services h2,
body.osp-mode-night .osp-home-why h2,
body.osp-mode-night .osp-home-blog h2,
body.osp-mode-night .osp-home-gallery h2,
body.osp-mode-night .osp-home-service-card h3,
body.osp-mode-night .osp-home-why__grid strong,
body.osp-mode-night .osp-home-gallery__item strong,
body.osp-mode-night .osp-news-card h2,
body.osp-mode-night .osp-news-card h3,
body.osp-mode-night .osp-news-card a {
  color: #151515;
}

body.osp-mode-night .osp-home-services p,
body.osp-mode-night .osp-home-why p,
body.osp-mode-night .osp-home-blog p,
body.osp-mode-night .osp-home-gallery p,
body.osp-mode-night .osp-home-service-card p,
body.osp-mode-night .osp-home-why__grid span,
body.osp-mode-night .osp-home-gallery__item p,
body.osp-mode-night .osp-news-card span,
body.osp-mode-night .osp-news-card p {
  color: #59616a;
}

body.osp-mode-night .osp-kicker--dark,
body.osp-mode-night .osp-home-services .osp-kicker,
body.osp-mode-night .osp-home-blog .osp-kicker,
body.osp-mode-night .osp-home-gallery .osp-kicker {
  color: var(--osp-red);
}

body.osp-weather-clear .osp-hero {
  background: linear-gradient(90deg, rgba(22, 28, 30, 0.84), rgba(22, 28, 30, 0.46), rgba(155, 16, 24, 0.48)), url("../img/sample2.jpg") center/cover no-repeat;
}

body.osp-weather-cloudy .osp-hero {
  filter: saturate(0.9);
}

body.osp-weather-rain .osp-hero,
body.osp-weather-storm .osp-hero {
  background: linear-gradient(90deg, rgba(10, 14, 26, 0.9), rgba(10, 14, 26, 0.62), rgba(74, 93, 130, 0.52)), url("../img/sample2.jpg") center/cover no-repeat;
}

body.osp-weather-snow .osp-hero {
  background: linear-gradient(90deg, rgba(50, 58, 74, 0.82), rgba(50, 58, 74, 0.56), rgba(120, 126, 139, 0.45)), url("../img/sample2.jpg") center/cover no-repeat;
}

body.osp-weather-fog .osp-hero {
  background: linear-gradient(90deg, rgba(36, 40, 45, 0.9), rgba(36, 40, 45, 0.68), rgba(89, 94, 102, 0.5)), url("../img/sample2.jpg") center/cover no-repeat;
}

@media (max-width: 767.98px) {
  .osp-feature-strip {
    margin-top: 0;
  }
  .osp-feature-strip__item {
    border-bottom: 1px solid var(--osp-line);
    border-right: 0;
  }
  .osp-gallery-grid {
    grid-template-columns: 1fr;
  }
  .osp-image-stack__badge {
    bottom: 12px;
    left: 12px;
  }
  .osp-stat-row {
    flex-direction: column;
  }
  .osp-about-checkgrid {
    grid-template-columns: 1fr;
  }
  .osp-why-item {
    grid-template-columns: 1fr;
  }
}
.osp-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.osp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.osp-reveal[data-osp-delay="1"] {
  transition-delay: 0.08s;
}

.osp-reveal[data-osp-delay="2"] {
  transition-delay: 0.16s;
}

.osp-reveal[data-osp-delay="3"] {
  transition-delay: 0.24s;
}

@keyframes osp-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes osp-navbar-slide {
  from {
    opacity: 0.85;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .osp-reveal {
    opacity: 1;
    transform: none;
  }
}
.min-vh-hero {
  min-height: 760px;
}

.osp-home-hero {
  color: #fff;
  min-height: 790px;
  overflow: hidden;
  position: relative;
}

.osp-home-hero__bg,
.osp-home-hero__overlay {
  inset: 0;
  position: absolute;
}

.osp-home-hero__bg {
  animation: osp-hero-slide 18s infinite;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
}

.osp-home-hero__bg--one {
  background-image: url("../img/firdip/backgrounds-slider-1-1.jpg");
  opacity: 1;
}

.osp-home-hero__bg--two {
  animation-delay: 6s;
  background-image: url("../img/firdip/backgrounds-slider-1-2.jpg");
}

.osp-home-hero__bg--three {
  animation-delay: 12s;
  background-image: url("../img/firdip/backgrounds-slider-1-3.jpg");
}

.osp-home-hero__overlay {
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.94) 0%, rgba(9, 9, 9, 0.72) 47%, rgba(159, 16, 24, 0.22) 100%), radial-gradient(circle at 82% 24%, rgba(243, 179, 61, 0.18), transparent 32%);
  z-index: 1;
}

.osp-home-hero .container {
  position: relative;
  z-index: 2;
}

.osp-home-hero__content {
  position: relative;
}

.osp-home-hero__content::after {
  background: radial-gradient(circle at center, rgba(215, 25, 32, 0.26), transparent 68%);
  content: "";
  height: 430px;
  left: -100px;
  pointer-events: none;
  position: absolute;
  top: -120px;
  width: 430px;
  z-index: -1;
}

.osp-home-hero__content h1 {
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  font-weight: 900;
  line-height: 0.86;
  margin-bottom: 1.4rem;
  max-width: 980px;
  text-transform: uppercase;
}

.osp-home-hero__content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 720px;
}

.osp-hero-alarm {
  background: var(--osp-red);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  margin-left: auto;
  max-width: 260px;
  padding: 1.6rem;
  position: relative;
  transform: translateY(48px);
}

.osp-hero-alarm::before {
  border: 1px solid rgba(255, 255, 255, 0.24);
  content: "";
  inset: 10px;
  pointer-events: none;
  position: absolute;
}

.osp-hero-alarm span,
.osp-hero-alarm strong {
  display: block;
  position: relative;
  z-index: 1;
}

.osp-hero-alarm span {
  font-weight: 900;
  text-transform: uppercase;
}

.osp-hero-alarm strong {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.osp-hero-alarm p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0.8rem 0 0;
  position: relative;
  z-index: 1;
}

.osp-home-features {
  background: transparent;
  margin-top: -70px;
  padding: 0 0 2.3rem;
  position: relative;
  z-index: 7;
}

.osp-home-feature {
  background: #fff;
  border: 0;
  border-right: 1px solid var(--osp-line);
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  color: var(--osp-ink);
  min-height: 170px;
  overflow: hidden;
  padding: 1.55rem;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.osp-home-feature::before {
  background: var(--osp-red);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.osp-home-feature::after {
  align-items: center;
  background: var(--osp-red);
  color: #fff;
  content: "!";
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: 1.25rem;
  top: 1.35rem;
  width: 48px;
}

.osp-home-features .col-md-3:nth-child(2) .osp-home-feature::after {
  content: "+";
}

.osp-home-features .col-md-3:nth-child(3) .osp-home-feature::after {
  content: "i";
}

.osp-home-features .col-md-3:nth-child(4) .osp-home-feature::after {
  content: "*";
}

.osp-home-feature:hover {
  background: #151515;
  border-color: rgba(215, 25, 32, 0.4);
  color: #fff;
  box-shadow: 0 18px 34px rgba(21, 21, 21, 0.16);
  transform: translateY(-8px);
}

.osp-home-feature strong,
.osp-home-feature span {
  display: block;
}

.osp-home-feature strong {
  color: #151515;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
  padding-right: 3.4rem;
  text-transform: uppercase;
}

.osp-home-feature span {
  color: #59616a;
}

.osp-home-feature:hover strong {
  color: #fff;
}

.osp-home-feature:hover span {
  color: rgba(255, 255, 255, 0.72);
}

.osp-home-about {
  background: #fff;
  color: var(--osp-ink);
  padding-top: 7.2rem;
}

.osp-home-about__media {
  min-height: 640px;
  overflow: visible;
  position: relative;
}

.osp-home-about__shape {
  background: linear-gradient(180deg, rgba(215, 25, 32, 0.92), rgba(215, 25, 32, 0.08));
  height: 310px;
  left: calc(100% + 16px);
  position: absolute;
  top: 14px;
  width: 24px;
}

.osp-home-about__main,
.osp-home-about__small,
.osp-home-about__mini,
.osp-home-about__gas {
  display: block;
  position: absolute;
}

.osp-home-about__main {
  border: 8px solid #fff;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
  height: 575px;
  left: 0;
  top: 0;
  width: 84%;
}

.osp-home-about__small {
  border: 12px solid #fff;
  bottom: 20px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
  height: 250px;
  right: 0;
  width: 44%;
}

.osp-home-about__mini {
  border: 8px solid #fff;
  bottom: -26px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  height: 220px;
  left: 44%;
  width: 45%;
}

.osp-home-about__gas {
  bottom: -10px;
  left: -104px;
  width: 168px;
}

.osp-home-about__badge {
  align-items: center;
  background: #171e24;
  border: 4px solid #fff;
  bottom: -34px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 122px;
  justify-content: center;
  left: 36%;
  padding: 1rem;
  position: absolute;
  text-align: center;
  width: 232px;
}

.osp-home-about__badge strong {
  color: #e94a4a;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.osp-home-about__badge span {
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: uppercase;
}

.osp-home-about__content h2,
.osp-home-why h2,
.osp-home-cta h2 {
  color: #151515;
  font-size: clamp(1.9rem, 3.5vw, 3.15rem);
  font-weight: 900;
  line-height: 0.96;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.osp-home-about__content p,
.osp-home-why p {
  color: #59616a;
  font-size: 1.06rem;
  line-height: 1.8;
}

.osp-home-about__features {
  border-top: 1px solid var(--osp-line);
  border-bottom: 1px solid var(--osp-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0;
  padding: 1.2rem 0;
}

.osp-home-about__features strong,
.osp-home-about__features span {
  display: block;
}

.osp-home-about__features strong {
  color: #252525;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.osp-home-about__features span {
  color: #5f6872;
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 0.28rem;
}

.osp-home-about__features article {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 62px minmax(0, 1fr);
}

.osp-home-about__icon {
  align-items: center;
  background: #f3efeb;
  border-radius: 50%;
  color: #2d343a;
  display: block;
  grid-row: 1/span 2;
  height: 62px;
  line-height: 0;
  margin-top: 0;
  position: relative;
  width: 62px;
}

.osp-home-about__icon svg {
  display: block;
  height: 30px;
  left: 50%;
  margin: 0;
  overflow: visible;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
}

.osp-home-about__list-wrap {
  align-items: start;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr) 270px;
  margin-bottom: 1.4rem;
}

.osp-home-about__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.osp-home-about__list li {
  color: #5f676d;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 0.85rem;
  padding-left: 2rem;
  position: relative;
}

.osp-home-about__list li::before {
  color: var(--osp-red);
  content: "✔";
  font-size: 0.98rem;
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0.2rem;
}

.osp-home-about__list-wrap img {
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
  display: block;
  width: 100%;
}

.osp-home-checks {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.osp-home-checks span {
  background: var(--osp-cream);
  border-left: 4px solid var(--osp-red);
  font-weight: 800;
  padding: 0.85rem;
}

.osp-home-funfacts {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.9)), url("../img/firdip/shapes-funfact-bg.png") center/cover fixed;
  color: #fff;
  padding: 3.4rem 0;
}

.osp-home-funfact {
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  padding: 1.45rem;
}

.osp-home-funfact strong {
  color: var(--osp-gold);
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
}

.osp-home-funfact span {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  font-weight: 900;
  margin-top: 0.65rem;
  text-transform: uppercase;
}

.osp-home-services {
  background: radial-gradient(circle at top left, rgba(215, 25, 32, 0.09), transparent 28%), linear-gradient(180deg, #fff 0%, #f6f8fa 100%);
}

.osp-home-service-card {
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.osp-home-service-card:hover {
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.14);
  transform: translateY(-8px);
}

.osp-home-service-card img {
  aspect-ratio: 16/10;
  display: block;
  object-fit: cover;
  transition: transform 0.65s ease;
  width: 100%;
}

.osp-home-service-card::after {
  background: var(--osp-red);
  bottom: 0;
  content: "";
  height: 4px;
  left: 1.45rem;
  position: absolute;
  right: 1.45rem;
  transform: scaleX(0.32);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.osp-home-service-card:hover::after {
  transform: scaleX(1);
}

.osp-home-service-card:hover img {
  transform: scale(1.07);
}

.osp-home-service-card div {
  background: #fff;
  padding: 1.45rem;
}

.osp-home-service-card span {
  color: var(--osp-red);
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.55rem;
}

.osp-home-service-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.osp-home-service-card p {
  color: var(--osp-muted);
  line-height: 1.7;
  margin: 0;
}

.osp-home-why {
  background: var(--osp-cream);
  overflow: hidden;
}

.osp-home-why__image {
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.17);
  overflow: hidden;
  position: relative;
}

.osp-home-why__image img {
  display: block;
  width: 100%;
}

[data-osp-scroll-fx] {
  isolation: isolate;
}

[data-osp-scroll-fx] img {
  transform: translate3d(0, var(--osp-scroll-img-y, 0), 0) scale(1.04);
  transform-origin: center;
  transition: transform 0.18s linear;
  will-change: transform;
}

.osp-home-why__play {
  align-items: center;
  background: var(--osp-red);
  border: 10px solid #fff;
  border-radius: 50%;
  bottom: 34px;
  color: #fff;
  display: flex;
  font-weight: 900;
  height: 112px;
  justify-content: center;
  position: absolute;
  right: 34px;
  width: 112px;
}

.osp-home-why__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.osp-home-why__grid article {
  background: #fff;
  border: 1px solid var(--osp-line);
  padding: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.osp-home-why__grid article:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.osp-home-why__grid strong,
.osp-home-why__grid span {
  display: block;
}

.osp-home-why__grid strong {
  font-weight: 900;
  text-transform: uppercase;
}

.osp-home-why__grid span {
  color: var(--osp-muted);
  margin-top: 0.35rem;
}

.osp-home-cta {
  background: linear-gradient(90deg, rgba(118, 8, 14, 0.94), rgba(176, 20, 29, 0.78)), url("../img/firdip/backgrounds-cta-bg.png") center/cover fixed;
  color: #fff;
  padding: 6rem 0;
}

.osp-home-cta .osp-kicker,
.osp-home-testimonial .osp-kicker {
  color: var(--osp-gold);
}

.osp-home-cta h2,
.osp-home-cta p,
.osp-home-testimonial__content h2,
.osp-home-testimonial__content p,
.osp-home-testimonial__content strong,
.osp-home-testimonial__content span {
  color: #fff;
}

.osp-home-cta p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
  line-height: 1.8;
}

.osp-home-blog {
  background: #fff;
}

.osp-home-gallery {
  background: linear-gradient(180deg, #fff, #f6f8fa);
}

.osp-home-gallery__grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.osp-home-gallery__item {
  background: #fff;
  border: 1px solid var(--osp-line);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(23, 30, 36, 0.09);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.osp-home-gallery__item:hover {
  box-shadow: 0 24px 48px rgba(23, 30, 36, 0.14);
  transform: translateY(-6px);
}

.osp-home-gallery__item img {
  aspect-ratio: 16/10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.osp-home-gallery__item div {
  padding: 1.2rem;
}

.osp-home-gallery__item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.osp-home-gallery__item p {
  color: var(--osp-muted);
  line-height: 1.7;
  margin: 0;
}

.osp-home-testimonial {
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.86), rgba(136, 10, 18, 0.86), rgba(185, 24, 32, 0.78)), url("../img/firdip/backgrounds-cta-bg.png") center/cover fixed;
  color: #fff;
}

.osp-home-testimonial__photo {
  border-radius: 20px;
  margin: 0;
  overflow: hidden;
}

.osp-home-testimonial__photo img {
  display: block;
  width: 100%;
}

.osp-home-testimonial__content {
  padding: clamp(1rem, 2vw, 1.8rem);
}

.osp-home-testimonial__content h2 {
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  font-weight: 900;
  line-height: 0.98;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.osp-home-testimonial__content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.osp-home-testimonial__content strong,
.osp-home-testimonial__content span {
  display: block;
}

.osp-home-testimonial__content strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osp-home-testimonial__content span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  text-transform: uppercase;
}

.osp-home-brands {
  background: #171e24;
  padding: 3.2rem 0;
}

.osp-home-brands__title {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.osp-home-brands__marquee {
  overflow: hidden;
  position: relative;
}

.osp-home-brands__marquee::before,
.osp-home-brands__marquee::after {
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: clamp(1.5rem, 7vw, 6rem);
  z-index: 1;
}

.osp-home-brands__marquee::before {
  background: linear-gradient(90deg, #171e24, transparent);
}

.osp-home-brands__marquee::after {
  background: linear-gradient(270deg, #171e24, transparent);
  inset: 0 0 0 auto;
}

.osp-home-brands__track,
.osp-home-brands__set {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 0.9rem;
}

.osp-home-brands__track {
  animation: osp-supporters-scroll 28s linear infinite;
  width: max-content;
}

.osp-home-brands__marquee:hover .osp-home-brands__track {
  animation-play-state: paused;
}

.osp-home-brand {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 900;
  gap: 0.85rem;
  min-height: 88px;
  padding: 0.9rem 1.35rem;
  justify-content: center;
  white-space: nowrap;
}

.osp-home-brand > img,
.osp-home-brand__mark {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: #a91218;
  display: flex;
  flex: 0 0 54px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  object-fit: contain;
  padding: 0.25rem;
  width: 54px;
}

.osp-home-brand > span {
  display: grid;
  gap: 0.12rem;
}

.osp-home-brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osp-home-brand b {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.15;
  max-width: 190px;
  white-space: normal;
}

@keyframes osp-supporters-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .osp-home-brands__track {
    animation: none;
  }
}
.osp-page-head--places {
  background: linear-gradient(90deg, rgba(23, 30, 36, 0.78), rgba(151, 13, 20, 0.68)), url("../img/firdip/page-header-bg-1-1.jpg") center/cover fixed;
}

.osp-page-head--places h1 {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.osp-places-intro {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.osp-places-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border-bottom: 4px solid var(--osp-red);
  box-shadow: 0 18px 42px rgba(23, 30, 36, 0.13);
}

.osp-places-intro article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-width: 0;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--osp-line);
}

.osp-places-intro article:last-child {
  border-right: 0;
}

.osp-places-intro article > span {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  background: #172027;
  color: var(--osp-gold);
  font-weight: 900;
}

.osp-places-intro strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #172027;
  font-size: 0.96rem;
}

.osp-places-intro p {
  margin: 0;
  color: #69727a;
  font-size: 0.84rem;
  line-height: 1.45;
}

.osp-page-head--about {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.68)), url("../img/osp/zalozyciele-osp-kaszyce-wielkie.jpeg") center/cover no-repeat;
}

.osp-page-head--contact {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(151, 13, 20, 0.72)), url("../img/osp/cwiczenia-osp-kaszyce-wielkie-czerwiec-2025.jpg") center/cover no-repeat;
}

.osp-map-section {
  --osp-map-height: clamp(520px, 68vh, 660px);
  background: #f5f7f8;
  padding-top: 4.5rem;
}

.osp-map-toolbar {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(520px, 1.15fr);
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1.4rem 1.5rem;
  background: #fff;
  border: 1px solid var(--osp-line);
  box-shadow: 0 14px 36px rgba(23, 30, 36, 0.07);
}

.osp-map-toolbar h2 {
  max-width: 520px;
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0.1rem 0 0;
  text-wrap: balance;
}

.osp-map-search {
  display: grid;
  gap: 0.45rem;
  min-width: min(360px, 100%);
}

.osp-map-actions {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  min-width: 0;
}

.osp-map-actions .osp-map-search {
  flex: 1 1 260px;
}

.osp-map-filters {
  flex: 1 1 100%;
  justify-content: flex-end;
  order: 2;
}

.osp-map-mode-toggle {
  background: #171e24;
  border: 1px solid #171e24;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  min-height: 54px;
  padding: 0.7rem 0.95rem;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  border-radius: 2px;
}

.osp-map-mode-toggle:hover,
.osp-map-mode-toggle:focus-visible {
  background: var(--osp-red);
  border-color: var(--osp-red);
}

.osp-map-search span {
  color: var(--osp-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.osp-map-search input {
  background: #fff;
  border: 1px solid var(--osp-line);
  border-radius: 0;
  box-shadow: 0 14px 36px rgba(23, 30, 36, 0.08);
  min-height: 54px;
  padding: 0.75rem 1rem;
  width: 100%;
}

.osp-map-shell {
  background: #fff;
  border: 1px solid var(--osp-line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  min-height: var(--osp-map-height);
  box-shadow: 0 20px 50px rgba(23, 30, 36, 0.12);
}

.osp-map-canvas-wrap {
  min-height: var(--osp-map-height);
  position: relative;
}

.osp-map-legend {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 30, 36, 0.14);
  border-radius: 0.7rem;
  box-shadow: 0 10px 28px rgba(23, 30, 36, 0.16);
  color: #172027;
  bottom: 2.2rem;
  max-width: 230px;
  padding: 0.68rem 0.78rem;
  position: absolute;
  right: 1rem;
  z-index: 620;
}

.osp-map-legend strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.osp-map-legend ul {
  display: grid;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.osp-map-legend li {
  align-items: center;
  display: flex;
  color: #4d5963;
  font-size: 0.76rem;
  gap: 0.45rem;
}

.osp-map-legend li span {
  border-radius: 0.15rem;
  display: inline-block;
  height: 8px;
  width: 22px;
}

.osp-map-legend .is-powiat {
  background: #8c1515;
}

.osp-map-legend .is-prusice {
  background: rgba(215, 25, 32, 0.95);
}

.osp-map-legend .is-other-gmina {
  background: rgba(95, 115, 136, 0.55);
}

.osp-map-ctrl-hint {
  background: rgba(23, 30, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.45rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  left: 50%;
  opacity: 0;
  padding: 0.55rem 0.75rem;
  pointer-events: none;
  position: absolute;
  top: 1rem;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 700;
}

.osp-map-ctrl-hint.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.osp-map-canvas {
  height: 100%;
  inset: 0;
  min-height: var(--osp-map-height);
  position: absolute;
  width: 100%;
}

.osp-map-list {
  border-left: 1px solid var(--osp-line);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.osp-map-list__head {
  align-items: baseline;
  background: #171e24;
  color: #fff;
  display: flex;
  gap: 0.65rem;
  padding: 1.2rem;
}

.osp-map-list__head strong {
  color: var(--osp-gold);
  font-size: 2rem;
  line-height: 1;
}

.osp-map-list__head span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.osp-map-list__items {
  max-height: calc(var(--osp-map-height) - 92px);
  overflow: auto;
}

.osp-map-list__item {
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--osp-line);
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.2rem;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
  width: 100%;
}

.osp-map-list__item--aed {
  box-shadow: inset 4px 0 #008c4a;
}

.osp-map-list__item--osp {
  box-shadow: inset 4px 0 #d71920;
}

.osp-map-list__item--psp {
  box-shadow: inset 4px 0 #9f101b;
}

.osp-map-list__item--police {
  box-shadow: inset 4px 0 #174a7e;
}

.osp-map-list__item--public {
  box-shadow: inset 4px 0 #147a8a;
}

.osp-map-list__item--office {
  box-shadow: inset 4px 0 #68469c;
}

.osp-map-list__item:hover,
.osp-map-list__item:focus-visible {
  background: #fff5f0;
}

.osp-map-list__item strong {
  color: #171e24;
  font-size: 1rem;
}

.osp-map-list__item span {
  color: var(--osp-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.osp-map-marker {
  background: transparent;
  border: 0;
}

.osp-map-marker-symbol {
  align-items: center;
  background: var(--marker-color);
  border: 3px solid #fff;
  border-radius: 999px 999px 999px 0;
  box-shadow: 0 8px 20px rgba(23, 30, 36, 0.3);
  color: #fff;
  display: flex;
  height: 38px;
  justify-content: center;
  transform: rotate(-45deg);
  width: 38px;
}

.osp-map-marker-symbol svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: rotate(45deg);
  width: 22px;
}

.osp-map-marker-symbol--image {
  background: #fff;
  overflow: hidden;
}

.osp-map-marker-symbol--image img {
  height: 27px;
  object-fit: contain;
  transform: rotate(45deg);
  width: 27px;
}

.osp-map-list__icon {
  align-items: center;
  background: #eef2f5;
  border-radius: 999px;
  color: #26323d;
  display: inline-flex;
  height: 1.55rem;
  justify-content: center;
  margin-right: 0.4rem;
  vertical-align: middle;
  width: 1.55rem;
}

.osp-map-list__icon svg {
  fill: none;
  height: 1rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1rem;
}

.osp-map-list__icon--image {
  background: #fff;
  border: 1px solid #d9dde1;
}

.osp-map-list__icon--image img {
  height: 1.25rem;
  object-fit: contain;
  width: 1.25rem;
}

.osp-map-marker-label,
.osp-map-marker-img {
  align-items: center;
  border: 3px solid #fff;
  border-radius: 999px 999px 999px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  color: #fff;
  display: flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  transform: rotate(-45deg);
  width: 38px;
}

.osp-map-marker-label i,
.osp-map-marker-img img {
  height: 23px;
  line-height: 23px;
  max-width: 23px;
  transform: rotate(45deg);
}

.osp-map-marker-label i {
  font-style: normal;
  text-align: center;
}

.osp-map-canvas .leaflet-popup-content-wrapper {
  background: transparent;
  border-radius: 0;
  box-shadow: 0 18px 46px rgba(23, 30, 36, 0.28);
  padding: 0;
}

.osp-map-canvas .leaflet-popup-content {
  margin: 0;
  width: 280px !important;
}

.osp-map-canvas .leaflet-popup-tip {
  background: #171e24;
  box-shadow: 0 10px 20px rgba(23, 30, 36, 0.2);
}

.osp-map-canvas .leaflet-container a.leaflet-popup-close-button,
.osp-map-canvas .leaflet-popup-close-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 30, 36, 0.14);
  color: #171e24;
  display: flex;
  font-size: 1.2rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  line-height: 1;
  right: 8px;
  top: 8px;
  width: 28px;
  z-index: 2;
}

.osp-map-popup {
  background: #fff;
  border: 1px solid rgba(23, 30, 36, 0.12);
  color: #171e24;
  overflow: hidden;
}

.osp-map-popup__media {
  background: #171e24;
  border-bottom: 4px solid var(--osp-red);
  height: 128px;
  overflow: hidden;
}

.osp-map-popup-img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.osp-map-popup__body {
  padding: 1rem 1.05rem 1.05rem;
}

.osp-map-popup__eyebrow {
  color: var(--osp-red);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.osp-map-popup--aed .osp-map-popup__eyebrow {
  color: #008c4a;
}

.osp-map-popup--psp .osp-map-popup__eyebrow,
.osp-map-popup--osp .osp-map-popup__eyebrow {
  color: #b20d18;
}

.osp-map-popup--police .osp-map-popup__eyebrow {
  color: #174a7e;
}

.osp-map-popup--office .osp-map-popup__eyebrow {
  color: #68469c;
}

.osp-map-popup__title {
  color: #171e24;
  display: block;
  font-size: 1.08rem;
  line-height: 1.22;
  margin: 0 0 0.45rem;
}

.osp-map-popup__address {
  color: #58616b;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.osp-map-popup__desc {
  border-top: 1px solid rgba(23, 30, 36, 0.1);
  color: #3f4852;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
}

.osp-map-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.osp-map-popup-actions a {
  align-items: center;
  background: var(--osp-red);
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 34px;
  padding: 0 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
}

.osp-map-popup-actions a:nth-child(2) {
  background: #171e24;
}

.osp-map-popup-actions a:hover,
.osp-map-popup-actions a:focus-visible {
  background: var(--osp-gold);
  color: #171e24;
}

.osp-map-section--immersive {
  --osp-map-height: calc(100dvh - 132px);
  background: #f5f7f8;
  inset: 0;
  overflow: hidden;
  padding: 0;
  position: fixed;
  z-index: 10050;
}

body.osp-map-fullscreen-open {
  overflow: hidden;
}

.osp-map-section--immersive .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.osp-map-section--immersive .osp-map-toolbar {
  margin: 0;
  min-height: 132px;
  padding: 1rem 1.25rem;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  background: #f5f7f8;
  border-bottom: 1px solid var(--osp-line);
}

.osp-map-section--immersive .osp-map-toolbar .osp-kicker {
  margin-bottom: 0.25rem;
}

.osp-map-section--immersive .osp-map-toolbar h2 {
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  line-height: 1.05;
}

.osp-map-section--immersive .osp-map-actions {
  align-items: center;
}

.osp-map-section--immersive .osp-map-search {
  min-width: 220px;
}

.osp-map-section--immersive .osp-map-search span {
  display: none;
}

.osp-map-section--immersive .osp-map-search input,
.osp-map-section--immersive .osp-map-mode-toggle {
  min-height: 46px;
}

.osp-map-section--immersive .osp-map-filters {
  flex: 0 1 auto;
  order: initial;
  justify-content: flex-end;
}

.osp-map-shell--immersive {
  background: transparent;
  border: 0;
  display: block;
  min-height: 0;
  position: relative;
}

.osp-map-shell--immersive .osp-map-canvas-wrap {
  height: var(--osp-map-height);
  min-height: var(--osp-map-height);
}

.osp-map-shell--immersive .osp-map-canvas {
  min-height: var(--osp-map-height);
}

.osp-map-shell--immersive .osp-map-list {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(23, 30, 36, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  max-height: calc(var(--osp-map-height) - 2rem);
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: min(360px, 100% - 2rem);
  z-index: 640;
}

.osp-map-shell--immersive .osp-map-list__items {
  max-height: calc(var(--osp-map-height) - 110px);
}

.osp-map-shell--immersive .osp-map-legend {
  bottom: 1rem;
  left: 1rem;
  right: auto;
}

.osp-map-canvas .osp-boundary--powiat {
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
}

.osp-map-canvas .osp-boundary--prusice {
  filter: drop-shadow(0 0 2px rgba(140, 21, 21, 0.25));
}

.osp-map-canvas .leaflet-interactive:focus {
  outline: none;
}

.osp-boundary-tooltip {
  background: var(--osp-red);
  border: none;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  color: var(--osp-cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.36em 0.56em;
  pointer-events: none;
  white-space: nowrap;
}
.osp-boundary-tooltip::before {
  display: none;
}

.osp-recruit-hero {
  align-items: center;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.56), rgba(151, 13, 20, 0.74)), url("../img/osp/nabor-osp-kaszyce-wielkie.png") center/cover fixed;
  color: #fff;
  display: flex;
  min-height: 720px;
  overflow: hidden;
  padding: 7rem 0;
  position: relative;
}

.osp-recruit-hero::after {
  background: repeating-linear-gradient(90deg, var(--osp-red) 0 120px, var(--osp-gold) 120px 150px);
  bottom: 0;
  content: "";
  height: 9px;
  left: 0;
  position: absolute;
  right: 0;
}

.osp-recruit-hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 0.92;
  margin: 0 0 1.5rem;
  max-width: 960px;
  text-transform: uppercase;
}

.osp-recruit-hero__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 740px;
}

.osp-recruit-hero__card {
  background: #fff;
  border-bottom: 8px solid var(--osp-red);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  color: #171e24;
  margin-left: auto;
  max-width: 390px;
  padding: 2rem;
}

.osp-recruit-hero__card strong,
.osp-recruit-hero__card span {
  display: block;
}

.osp-recruit-hero__card strong {
  color: var(--osp-red);
  font-size: 6rem;
  font-weight: 900;
  line-height: 0.82;
}

.osp-recruit-hero__card span {
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0.7rem 0;
  text-transform: uppercase;
}

.osp-recruit-hero__card p {
  margin-bottom: 0;
}

.osp-recruit-steps {
  background: #fff;
}

.osp-recruit-downloads {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.osp-recruit-downloads a,
.osp-text-link {
  color: var(--osp-red);
  font-weight: 900;
  text-decoration: none;
}

.osp-recruit-downloads a {
  border: 1px solid var(--osp-line);
  padding: 0.85rem 1rem;
}

.osp-recruit-downloads a:hover,
.osp-text-link:hover {
  color: var(--osp-red-dark);
}

.osp-recruit-about h2,
.osp-recruit-fixed h2,
.osp-recruit-summary h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.osp-recruit-fixed {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.24), rgba(17, 17, 17, 0.86)), url("../img/osp/cwiczenia-osp-kaszyce-wielkie-czerwiec-2025.jpg") center/cover fixed;
  color: #fff;
  padding: 8rem 0;
}

.osp-recruit-fixed p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.85;
}

.osp-recruit-summary {
  background: #fff;
}

.osp-recruit-panel {
  background: #171e24;
  color: #fff;
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.osp-recruit-panel h2 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0;
}

.osp-recruit-panel p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.5rem;
}

.osp-recruit-panel .osp-btn--outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.osp-recruit-panel .osp-btn--outline:hover {
  border-color: var(--osp-red);
}

.osp-recruit-panel .osp-text-link {
  color: var(--osp-gold);
}

@keyframes osp-hero-slide {
  0%, 29% {
    opacity: 1;
    transform: scale(1.04);
  }
  34%, 95% {
    opacity: 0;
    transform: scale(1.12);
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}
@media (max-width: 1199.98px) {
  .osp-map-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .osp-map-toolbar h2 {
    max-width: 720px;
  }
  .osp-map-actions {
    justify-content: flex-start;
  }
  .osp-map-filters {
    justify-content: flex-start;
  }
}
@media (max-width: 991.98px) {
  .osp-places-intro {
    margin-top: 0;
  }
  .osp-places-intro__grid {
    grid-template-columns: 1fr;
  }
  .osp-places-intro article {
    border-right: 0;
    border-bottom: 1px solid var(--osp-line);
  }
  .osp-places-intro article:last-child {
    border-bottom: 0;
  }
  .osp-map-section {
    --osp-map-height: min(64vh, 580px);
  }
  .osp-map-section--immersive {
    --osp-map-height: calc(100dvh - 186px);
  }
  .min-vh-hero,
  .osp-home-hero {
    min-height: 620px;
  }
  .osp-home-features {
    margin-top: 0;
  }
  .osp-home-about__media {
    min-height: auto;
  }
  .osp-home-about__main,
  .osp-home-about__small,
  .osp-home-about__mini {
    position: relative;
    width: 100%;
  }
  .osp-home-about__main {
    height: auto;
  }
  .osp-home-about__small {
    bottom: auto;
    height: auto;
    margin-top: 1rem;
    right: auto;
  }
  .osp-home-about__mini {
    bottom: auto;
    height: auto;
    left: auto;
    margin-top: 1rem;
  }
  .osp-home-about__gas,
  .osp-home-about__shape {
    display: none;
  }
  .osp-home-about__badge {
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    position: relative;
  }
  .osp-home-about__features,
  .osp-home-about__list-wrap {
    grid-template-columns: 1fr;
  }
  .osp-home-cta {
    background-attachment: scroll;
  }
  .osp-page-head--places {
    background-attachment: scroll;
  }
  .osp-home-funfacts {
    background-attachment: scroll;
  }
  .osp-home-testimonial {
    background-attachment: scroll;
  }
  .osp-home-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .osp-home-brands__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .osp-map-toolbar,
  .osp-map-shell {
    grid-template-columns: 1fr;
  }
  .osp-map-shell {
    min-height: auto;
  }
  .osp-map-canvas-wrap {
    height: var(--osp-map-height);
    min-height: var(--osp-map-height);
  }
  .osp-map-canvas {
    min-height: 0;
  }
  .osp-map-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .osp-map-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .osp-map-filters {
    justify-content: flex-start;
    order: initial;
  }
  .osp-map-mode-toggle {
    width: 100%;
  }
  .osp-map-list {
    border-left: 0;
    border-top: 1px solid var(--osp-line);
  }
  .osp-map-list__items {
    max-height: min(46vh, 380px);
  }
  .osp-map-shell--immersive .osp-map-list {
    backdrop-filter: none;
    border: 0;
    border-top: 1px solid var(--osp-line);
    box-shadow: none;
    max-height: none;
    position: static;
    width: 100%;
  }
  .osp-map-section--immersive .osp-map-toolbar {
    min-height: 186px;
    padding: 0.8rem 1rem;
  }
  .osp-map-section--immersive .osp-map-actions {
    flex-direction: row;
  }
  .osp-map-section--immersive .osp-map-mode-toggle {
    width: auto;
  }
  .osp-map-section--immersive .osp-map-filters {
    flex: 1 1 100%;
  }
  .osp-map-shell--immersive .osp-map-list__items {
    max-height: min(42vh, 360px);
  }
  .osp-map-shell--immersive .osp-map-legend {
    left: 0.75rem;
    right: auto;
  }
  .osp-map-legend {
    bottom: 0.75rem;
    max-width: min(68vw, 290px);
    right: 0.75rem;
  }
  .osp-recruit-hero,
  .osp-recruit-fixed {
    background-attachment: scroll;
  }
  .osp-recruit-hero {
    min-height: auto;
  }
  .osp-recruit-hero__card {
    margin-left: 0;
    max-width: none;
  }
}
@media (max-width: 767.98px) {
  .osp-map-section {
    --osp-map-height: min(68vh, 560px);
  }
  .osp-map-section--immersive {
    --osp-map-height: calc(100dvh - 238px);
  }
  .osp-map-toolbar h2 {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
  }
  .osp-map-canvas-wrap {
    height: var(--osp-map-height);
    min-height: var(--osp-map-height);
  }
  .osp-map-legend {
    bottom: 0.55rem;
    max-width: min(78vw, 270px);
    padding: 0.62rem 0.72rem;
    right: 0.55rem;
  }
  .osp-map-legend strong {
    font-size: 0.7rem;
  }
  .osp-map-legend li {
    font-size: 0.76rem;
    gap: 0.38rem;
  }
  .osp-map-legend li span {
    height: 8px;
    width: 22px;
  }
  .osp-map-list__head {
    padding: 0.95rem 1rem;
  }
  .osp-map-list__head strong {
    font-size: 1.7rem;
  }
  .osp-map-list__items {
    max-height: min(42vh, 320px);
  }
  .osp-map-section--immersive .osp-map-toolbar {
    min-height: 238px;
    padding: 0.7rem 0.8rem;
  }
  .osp-map-section--immersive .osp-map-toolbar h2 {
    font-size: 1.25rem;
  }
  .osp-map-section--immersive .osp-map-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .osp-map-section--immersive .osp-map-mode-toggle {
    width: 100%;
  }
  .osp-map-section--immersive .osp-map-filters {
    justify-content: flex-start;
  }
  .osp-map-section--immersive .osp-map-list {
    display: none;
  }
  .osp-map-section--immersive .osp-map-legend {
    max-width: calc(100% - 1.5rem);
  }
  .osp-map-shell--immersive .osp-map-list__items {
    max-height: min(36vh, 300px);
  }
  .osp-home-hero__content h1 {
    font-size: 2rem;
  }
  [data-osp-scroll-fx] img {
    transform: none;
  }
  .osp-home-gallery__grid,
  .osp-home-brands__grid {
    grid-template-columns: 1fr;
  }
  .osp-home-checks,
  .osp-home-why__grid {
    grid-template-columns: 1fr;
  }
}
body.osp-mode-night :where(.osp-section:not(.osp-home-cta):not(.osp-home-funfacts):not(.osp-home-testimonial),
.osp-section--muted,
.osp-home-features,
.osp-home-about,
.osp-home-services,
.osp-home-why,
.osp-home-blog,
.osp-home-gallery,
.osp-map-section,
.osp-map-shell,
.osp-map-list,
.osp-news-card,
.osp-service-card,
.osp-home-service-card,
.osp-home-service-card div,
.osp-home-feature,
.osp-home-why__grid article,
.osp-home-gallery__item,
.osp-contact-panel,
.osp-recruit-panel,
.osp-blog-card,
.osp-founders-list,
.osp-map-search input,
.card) {
  background-color: #fff;
  color: var(--osp-ink);
}

body.osp-mode-night :where(.osp-section:not(.osp-home-cta):not(.osp-home-funfacts):not(.osp-home-testimonial),
.osp-section--muted,
.osp-home-features,
.osp-home-about,
.osp-home-services,
.osp-home-why,
.osp-home-blog,
.osp-home-gallery,
.osp-map-section,
.osp-news-card,
.osp-service-card,
.osp-home-service-card,
.osp-home-feature,
.osp-home-why__grid article,
.osp-home-gallery__item,
.osp-contact-panel,
.osp-recruit-panel,
.osp-blog-card,
.osp-founders-list,
.card) :where(h1, h2, h3, h4, h5, h6, strong) {
  color: #151515;
}

body.osp-mode-night :where(.osp-section:not(.osp-home-cta):not(.osp-home-funfacts):not(.osp-home-testimonial),
.osp-section--muted,
.osp-home-features,
.osp-home-about,
.osp-home-services,
.osp-home-why,
.osp-home-blog,
.osp-home-gallery,
.osp-map-section,
.osp-news-card,
.osp-service-card,
.osp-home-service-card,
.osp-home-feature,
.osp-home-why__grid article,
.osp-home-gallery__item,
.osp-contact-panel,
.osp-recruit-panel,
.osp-blog-card,
.osp-founders-list,
.card) :where(p, li, small, .small, .text-muted, span:not(.osp-kicker):not(.badge):not(.btn):not(.osp-btn)) {
  color: #59616a !important;
}

body.osp-mode-night :where(.osp-kicker, .osp-kicker--dark) {
  color: var(--osp-red);
}

body.osp-mode-night :where(.osp-home-cta, .osp-home-funfacts, .osp-home-testimonial, .osp-footer, .osp-page-head, .osp-recruit-hero, .osp-recruit-fixed) {
  color: #fff;
}

body.osp-mode-night :where(.osp-home-cta, .osp-home-funfacts, .osp-home-testimonial, .osp-footer, .osp-page-head, .osp-recruit-hero, .osp-recruit-fixed) :where(h1, h2, h3, h4, h5, h6, strong) {
  color: #fff;
}

body.osp-mode-night :where(.osp-home-cta, .osp-home-funfacts, .osp-home-testimonial, .osp-footer, .osp-page-head, .osp-recruit-hero, .osp-recruit-fixed) :where(p, li, small, .small, span:not(.osp-kicker):not(.badge):not(.btn):not(.osp-btn)) {
  color: rgba(255, 255, 255, 0.82);
}

/* Sharper editorial finish: flatter sections, squarer cards, less synthetic motion. */
.osp-section,
.osp-section--muted,
.osp-home-features,
.osp-home-about,
.osp-home-services,
.osp-home-why,
.osp-home-blog,
.osp-home-gallery,
.osp-blog-grid-section,
.osp-services-section,
.osp-why-section {
  background-image: none;
}

.osp-section--muted,
.osp-home-features,
.osp-home-why,
.osp-home-blog,
.osp-home-gallery,
.osp-blog-grid-section,
.osp-why-section {
  background-color: #f5f2ec;
}

:is(.osp-news-card,
.osp-service-card,
.osp-contact-panel,
.osp-firdip-service,
.osp-blog-card,
.osp-blog-article,
.osp-home-feature,
.osp-home-service-card,
.osp-home-why__grid article,
.osp-home-gallery__item,
.osp-recruit-panel,
.osp-founders-list,
.osp-history-note,
.osp-about-fact,
.osp-why-item,
.osp-map-shell,
.osp-map-list,
.osp-map-search,
.card) {
  border-radius: 2px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

:is(.osp-news-card,
.osp-service-card,
.osp-contact-panel,
.osp-firdip-service,
.osp-blog-card,
.osp-blog-article,
.osp-home-feature,
.osp-home-service-card,
.osp-home-why__grid article,
.osp-home-gallery__item,
.osp-recruit-panel,
.osp-founders-list,
.osp-about-fact,
.osp-why-item,
.card):hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: none;
}

:is(.osp-news-card__thumb,
.osp-blog-card__image,
.osp-home-gallery__item,
.osp-image-stack,
.osp-blog-hero-image,
.osp-map-canvas-wrap,
.osp-rounded-image,
.osp-gallery-grid img,
.osp-about-collage__main,
.osp-about-collage__small) {
  border-radius: 0;
}

:is(.osp-news-card:hover .osp-news-card__thumb img,
.osp-blog-card:hover .osp-blog-card__image img,
.osp-firdip-service:hover .osp-firdip-service__image img,
.osp-image-stack:hover img,
.osp-gallery-grid img:hover) {
  transform: none;
}

.osp-btn,
.osp-navbar__call,
.osp-language-menu__toggle,
.osp-topbar__alert,
.osp-about-callout,
.osp-about-checkgrid span,
.osp-checks span,
.osp-stat-row div,
.osp-map-legend,
.osp-map-toolbar,
.osp-lightbox__image {
  border-radius: 2px;
}

.osp-section-heading {
  border-bottom: 1px solid var(--osp-line);
  padding-bottom: 1rem;
}

.osp-kicker,
.osp-blog-card__meta,
.osp-blog-article__meta,
.osp-blog-article__tags {
  letter-spacing: 0.04em;
}

.osp-home-service-card::before,
.osp-home-feature::before,
.osp-blog-card__image::after {
  display: none;
}

.osp-section.osp-home-testimonial {
  background: linear-gradient(90deg, rgba(14, 14, 14, 0.88), rgba(124, 8, 15, 0.9), rgba(178, 22, 31, 0.78)), url("../img/firdip/backgrounds-cta-bg.png") center/cover fixed;
  color: #fff;
}

.osp-section.osp-home-testimonial :where(h2, p, strong, span) {
  color: #fff;
}

.osp-section.osp-home-testimonial .osp-kicker {
  color: var(--osp-gold);
}

/* Final contrast fixes for intentionally dark panels. */
.osp-contact-card--dark,
body.osp-mode-night .osp-contact-card--dark {
  background: #171e24;
  border-color: #171e24;
  color: #fff;
}

.osp-contact-card--dark :where(h1, h2, h3, h4, h5, h6, strong, dt, dd),
body.osp-mode-night .osp-contact-card--dark :where(h1, h2, h3, h4, h5, h6, strong, dt, dd) {
  color: #fff !important;
}

.osp-contact-card--dark :where(p, span:not(.osp-contact-card__label), li),
body.osp-mode-night .osp-contact-card--dark :where(p, span:not(.osp-contact-card__label), li) {
  color: rgba(255, 255, 255, 0.76) !important;
}

.osp-contact-card--dark .osp-contact-card__label,
body.osp-mode-night .osp-contact-card--dark .osp-contact-card__label {
  color: var(--osp-gold) !important;
}

.osp-contact-card--dark .osp-contact-registry div,
body.osp-mode-night .osp-contact-card--dark .osp-contact-registry div {
  border-color: rgba(255, 255, 255, 0.18);
}

.osp-recruit-steps .osp-service-card,
body.osp-mode-night .osp-recruit-steps .osp-service-card {
  background: #fff;
  border-color: var(--osp-line);
  color: #171e24;
}

.osp-recruit-steps .osp-service-card :where(h2, strong),
body.osp-mode-night .osp-recruit-steps .osp-service-card :where(h2, strong) {
  color: #171e24 !important;
}

.osp-recruit-steps .osp-service-card > strong,
body.osp-mode-night .osp-recruit-steps .osp-service-card > strong {
  color: var(--osp-red) !important;
}

.osp-recruit-steps .osp-service-card :where(p, span:not(.badge):not(.btn):not(.osp-btn)),
body.osp-mode-night .osp-recruit-steps .osp-service-card :where(p, span:not(.badge):not(.btn):not(.osp-btn)) {
  color: #59616a !important;
}

.osp-recruit-steps .osp-recruit-downloads a,
body.osp-mode-night .osp-recruit-steps .osp-recruit-downloads a {
  background: #fff;
  border-color: rgba(23, 30, 36, 0.22);
  color: var(--osp-red) !important;
}

.osp-recruit-steps .osp-recruit-downloads a:hover,
body.osp-mode-night .osp-recruit-steps .osp-recruit-downloads a:hover {
  background: var(--osp-red);
  border-color: var(--osp-red);
  color: #fff !important;
}

/* Recruitment page hard reset: keep the page readable even when the site-wide night rules are active. */
.osp-recruit-page,
body.osp-mode-night .osp-recruit-page {
  background: #fff;
  color: #171e24;
}

.osp-recruit-page .osp-recruit-hero,
body.osp-mode-night .osp-recruit-page .osp-recruit-hero {
  background: linear-gradient(90deg, rgba(12, 14, 17, 0.93), rgba(12, 14, 17, 0.62) 48%, rgba(153, 12, 18, 0.58)), url("../img/osp/nabor-osp-kaszyce-wielkie.png") center/cover fixed;
  color: #fff;
}

.osp-recruit-page .osp-recruit-hero :where(h1, p),
body.osp-mode-night .osp-recruit-page .osp-recruit-hero :where(h1, p) {
  color: #fff !important;
}

.osp-recruit-page .osp-recruit-hero__card,
body.osp-mode-night .osp-recruit-page .osp-recruit-hero__card {
  background: #fff !important;
  border: 1px solid rgba(23, 30, 36, 0.12);
  border-bottom: 8px solid var(--osp-red);
  color: #171e24 !important;
  max-width: 430px;
}

.osp-recruit-page .osp-recruit-hero__card strong,
body.osp-mode-night .osp-recruit-page .osp-recruit-hero__card strong {
  color: var(--osp-red) !important;
}

.osp-recruit-page .osp-recruit-hero__card :where(span, p),
body.osp-mode-night .osp-recruit-page .osp-recruit-hero__card :where(span, p) {
  color: #171e24 !important;
}

.osp-recruit-page .osp-recruit-steps,
body.osp-mode-night .osp-recruit-page .osp-recruit-steps,
.osp-recruit-page .osp-recruit-summary,
body.osp-mode-night .osp-recruit-page .osp-recruit-summary {
  background: #fff !important;
  color: #171e24 !important;
}

.osp-recruit-page .osp-recruit-about,
body.osp-mode-night .osp-recruit-page .osp-recruit-about {
  background: #f5f2ec !important;
  color: #171e24 !important;
}

.osp-recruit-page .osp-service-card,
body.osp-mode-night .osp-recruit-page .osp-service-card,
.osp-recruit-page .osp-recruit-panel,
body.osp-mode-night .osp-recruit-page .osp-recruit-panel {
  background: #fff !important;
  border: 1px solid rgba(23, 30, 36, 0.14);
  color: #171e24 !important;
}

.osp-recruit-page .osp-service-card :where(h2, h3, strong),
body.osp-mode-night .osp-recruit-page .osp-service-card :where(h2, h3, strong),
.osp-recruit-page .osp-recruit-about :where(h2, h3, strong),
body.osp-mode-night .osp-recruit-page .osp-recruit-about :where(h2, h3, strong),
.osp-recruit-page .osp-recruit-summary :where(h2, h3, strong),
body.osp-mode-night .osp-recruit-page .osp-recruit-summary :where(h2, h3, strong),
.osp-recruit-page .osp-recruit-panel :where(h2, h3, strong),
body.osp-mode-night .osp-recruit-page .osp-recruit-panel :where(h2, h3, strong) {
  color: #171e24 !important;
}

.osp-recruit-page .osp-service-card > strong,
body.osp-mode-night .osp-recruit-page .osp-service-card > strong {
  color: var(--osp-red) !important;
}

.osp-recruit-page :where(.osp-service-card, .osp-recruit-about, .osp-recruit-summary, .osp-recruit-panel) :where(p, li, small, .small, span:not(.osp-kicker):not(.badge):not(.btn):not(.osp-btn)),
body.osp-mode-night .osp-recruit-page :where(.osp-service-card, .osp-recruit-about, .osp-recruit-summary, .osp-recruit-panel) :where(p, li, small, .small, span:not(.osp-kicker):not(.badge):not(.btn):not(.osp-btn)) {
  color: #4f5963 !important;
}

.osp-recruit-page .osp-kicker,
body.osp-mode-night .osp-recruit-page .osp-kicker {
  color: var(--osp-gold) !important;
}

.osp-recruit-page .osp-kicker--dark,
body.osp-mode-night .osp-recruit-page .osp-kicker--dark {
  color: var(--osp-red) !important;
}

.osp-recruit-page .osp-about-callout,
body.osp-mode-night .osp-recruit-page .osp-about-callout {
  background: var(--osp-red) !important;
  border-left: 6px solid #171e24;
  color: #fff !important;
}

.osp-recruit-page .osp-about-callout :where(strong, span),
body.osp-mode-night .osp-recruit-page .osp-about-callout :where(strong, span) {
  color: #fff !important;
}

.osp-recruit-page .osp-about-checkgrid span,
body.osp-mode-night .osp-recruit-page .osp-about-checkgrid span {
  background: #fff !important;
  border: 1px solid rgba(23, 30, 36, 0.12);
  color: #171e24 !important;
}

.osp-recruit-page .osp-recruit-downloads a,
body.osp-mode-night .osp-recruit-page .osp-recruit-downloads a,
.osp-recruit-page .osp-text-link,
body.osp-mode-night .osp-recruit-page .osp-text-link {
  color: var(--osp-red) !important;
}

.osp-recruit-page .osp-recruit-downloads a,
body.osp-mode-night .osp-recruit-page .osp-recruit-downloads a {
  background: #fff !important;
  border-color: rgba(23, 30, 36, 0.2) !important;
}

.osp-recruit-page .osp-recruit-downloads a:hover,
body.osp-mode-night .osp-recruit-page .osp-recruit-downloads a:hover {
  background: var(--osp-red) !important;
  border-color: var(--osp-red) !important;
  color: #fff !important;
}

.osp-recruit-page .osp-recruit-fixed,
body.osp-mode-night .osp-recruit-page .osp-recruit-fixed {
  background: linear-gradient(90deg, rgba(14, 14, 14, 0.36), rgba(14, 14, 14, 0.88)), url("../img/osp/cwiczenia-osp-kaszyce-wielkie-czerwiec-2025.jpg") center/cover fixed;
  color: #fff !important;
}

.osp-recruit-page .osp-recruit-fixed :where(h2, p, strong, span:not(.osp-kicker)),
body.osp-mode-night .osp-recruit-page .osp-recruit-fixed :where(h2, p, strong, span:not(.osp-kicker)) {
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .osp-recruit-page .osp-recruit-hero,
  body.osp-mode-night .osp-recruit-page .osp-recruit-hero,
  .osp-recruit-page .osp-recruit-fixed,
  body.osp-mode-night .osp-recruit-page .osp-recruit-fixed {
    background-attachment: scroll;
  }
  .osp-recruit-page .osp-recruit-hero__card,
  body.osp-mode-night .osp-recruit-page .osp-recruit-hero__card {
    margin-left: 0;
    max-width: none;
  }
}
/* Keep this override at the end: header variants above use the `background`
   shorthand, which otherwise resets background-attachment to scroll. */
.osp-page-head.osp-header-animation,
.osp-contact-hero.osp-header-animation {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.osp-support-hero.osp-header-animation .osp-support-hero__media {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.osp-topbar__messenger {
  background: #168aff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  padding: 0.38rem 0.72rem;
  text-decoration: none;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.osp-topbar__messenger::before {
  display: none;
}

.osp-topbar__messenger svg {
  fill: currentColor;
  flex: 0 0 auto;
  height: 1rem;
  width: 1rem;
}

.osp-topbar__messenger:hover,
.osp-topbar__messenger:focus-visible {
  background: #0879ea;
  box-shadow: 0 5px 16px rgba(22, 138, 255, 0.34);
  color: #fff;
  transform: translateY(-1px);
}

/* Places: the map is the layout; controls and results float above it. */
.osp-map-section:not(.osp-map-section--immersive) {
  --osp-map-height: clamp(680px, 82vh, 900px);
  padding: 0;
}

.osp-map-section:not(.osp-map-section--immersive) > .container {
  max-width: none;
  padding: 0;
  position: relative;
  width: 100%;
}

.osp-map-section:not(.osp-map-section--immersive) .osp-map-shell {
  border: 0;
  display: block;
  min-height: var(--osp-map-height);
  position: relative;
}

.osp-map-section:not(.osp-map-section--immersive) .osp-map-canvas-wrap {
  height: var(--osp-map-height);
  min-height: var(--osp-map-height);
}

.osp-map-section:not(.osp-map-section--immersive) .osp-map-toolbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 30, 36, 0.16);
  box-shadow: 0 18px 44px rgba(23, 30, 36, 0.2);
  grid-template-columns: 1fr;
  left: 1rem;
  margin: 0;
  max-height: calc(var(--osp-map-height) - 2rem);
  overflow: auto;
  padding: 1rem 1.1rem;
  position: absolute;
  top: 1rem;
  width: min(720px, 100% - 400px);
  z-index: 650;
}

.osp-map-section:not(.osp-map-section--immersive) .osp-map-toolbar h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
}

.osp-map-section:not(.osp-map-section--immersive) .osp-map-search span {
  display: none;
}

.osp-map-section:not(.osp-map-section--immersive) .osp-map-search input,
.osp-map-section:not(.osp-map-section--immersive) .osp-map-mode-toggle {
  min-height: 46px;
}

.osp-map-section:not(.osp-map-section--immersive) .osp-map-list {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(23, 30, 36, 0.16);
  box-shadow: 0 18px 44px rgba(23, 30, 36, 0.2);
  max-height: calc(var(--osp-map-height) - 2rem);
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 360px;
  z-index: 640;
}

.osp-map-section:not(.osp-map-section--immersive) .osp-map-list__items {
  max-height: calc(var(--osp-map-height) - 104px);
}

.osp-map-section:not(.osp-map-section--immersive) .osp-map-legend {
  bottom: 1rem;
  left: 1rem;
  right: auto;
}

@media (max-width: 991.98px) {
  .osp-map-section:not(.osp-map-section--immersive) {
    --osp-map-height: max(760px, 90vh);
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-toolbar {
    left: 0.75rem;
    max-height: none;
    right: 0.75rem;
    top: 0.75rem;
    width: auto;
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-actions {
    align-items: stretch;
    flex-direction: row;
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-list {
    bottom: 0.75rem;
    max-height: 230px;
    right: 0.75rem;
    top: auto;
    width: min(360px, 100% - 1.5rem);
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-list__items {
    max-height: 160px;
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-legend {
    bottom: 0.75rem;
    left: 0.75rem;
  }
}
@media (max-width: 767.98px) {
  .osp-map-section:not(.osp-map-section--immersive) {
    --osp-map-height: max(780px, 100dvh);
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-toolbar__heading,
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-toolbar > div:first-child {
    display: none;
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-toolbar {
    padding: 0.7rem;
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-actions {
    flex-direction: column;
    gap: 0.55rem;
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-actions .osp-map-search {
    flex-basis: auto;
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-filters button {
    flex: 0 0 auto;
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-mode-toggle {
    width: 100%;
  }
  .osp-map-section:not(.osp-map-section--immersive) .osp-map-legend {
    bottom: 245px;
    max-width: calc(100% - 1.5rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .osp-page-head.osp-header-animation,
  .osp-contact-hero.osp-header-animation,
  .osp-support-hero.osp-header-animation .osp-support-hero__media {
    background-attachment: scroll !important;
  }
}
.weather-widget {
  --weather-ink: #182230;
  --weather-muted: #617187;
  background: linear-gradient(180deg, rgba(238, 243, 247, 0.96), rgba(247, 243, 235, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  overflow: visible;
  padding: 1.1rem 0;
  position: relative;
  z-index: 2;
}

.weather-widget--home {
  background: #111;
  border-bottom: 0;
  margin-top: 0;
  padding: 0.95rem 0;
}

.weather-widget__panel {
  align-items: stretch;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 0.75rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 0.85rem;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) auto;
  min-height: 118px;
  overflow: hidden;
  padding: 0.65rem;
  position: relative;
}

.weather-widget--home .weather-widget__panel {
  background: linear-gradient(135deg, #72c6f6, #b9e8ff 58%, #e7f7ff);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
  margin-inline: auto;
  max-width: 1120px;
  min-height: 190px;
  padding: 0;
}

@supports (backdrop-filter: blur(12px)) {
  .weather-widget__panel {
    backdrop-filter: blur(12px);
  }
}
.weather-widget__info {
  align-self: center;
  min-width: 0;
  padding: 0.35rem 0.35rem 0.35rem 0;
}

.weather-widget--home .weather-widget__info {
  align-self: stretch;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: end;
  min-height: 190px;
  max-width: 520px;
  padding: clamp(1rem, 2.2vw, 1.55rem);
  position: relative;
  text-align: right;
  z-index: 8;
}

.weather-widget--home .weather-widget__main,
.weather-widget--home .weather-widget__details,
.weather-widget--home .weather-widget__pollen {
  justify-content: flex-end;
}

.weather-widget__eyebrow {
  color: var(--osp-red);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: 0.18rem;
  text-transform: uppercase;
}

.weather-widget__location {
  color: var(--weather-ink);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}

.weather-widget--home .weather-widget__location,
.weather-widget--home .weather-widget__temperature {
  color: #fff;
}

.weather-widget__main {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin-top: 0.45rem;
}

.weather-widget__temperature {
  color: var(--weather-ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.weather-widget__condition {
  color: #52627a;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.weather-widget--home .weather-widget__condition,
.weather-widget--home .weather-widget__details,
.weather-widget--home .weather-widget__pollen-label {
  color: rgba(255, 255, 255, 0.82);
}

.weather-widget__details {
  color: var(--weather-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 0.3rem 0.9rem;
  margin-top: 0.45rem;
}

.weather-widget__pollen {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.45rem;
}

.weather-widget__pollen[hidden] {
  display: none;
}

.weather-widget__pollen-label {
  color: var(--weather-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.weather-widget__pollen-pill {
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.28rem 0.46rem;
}

.weather-widget__pollen-pill--low {
  background: #16a34a;
}

.weather-widget__pollen-pill--medium {
  background: #f59e0b;
}

.weather-widget__pollen-pill--high {
  background: #dc2626;
}

.weather-scene {
  border-radius: 0.65rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  min-height: 104px;
  overflow: hidden;
  position: relative;
}

.weather-widget--home .weather-scene {
  border-radius: 0.75rem 0 0 0.75rem;
  box-shadow: none;
  grid-column: 1/-1;
  grid-row: 1;
  min-height: 190px;
}

.weather-widget--home .weather-widget__info {
  grid-column: 1;
  grid-row: 1;
}

.weather-widget--home .weather-widget__safety {
  align-self: stretch;
  background: linear-gradient(180deg, rgba(215, 25, 32, 0.9), rgba(132, 18, 24, 0.86));
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 0.65rem;
  grid-column: 2;
  grid-row: 1;
  padding: 0.85rem;
  position: relative;
  z-index: 8;
}

.weather-widget__alarm {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.7rem;
  color: #fff;
  display: flex;
  gap: 0.7rem;
  justify-content: space-between;
  min-height: 64px;
  padding: 0.7rem 0.8rem;
}

.weather-widget__alarm span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weather-widget__alarm strong {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 0.9;
}

.weather-widget--home .weather-alerts {
  align-self: stretch;
  min-width: 0;
}

.weather-scene__box {
  background: linear-gradient(155deg, rgba(120, 181, 232, 0.35), rgba(187, 211, 210, 0.28) 54%, rgba(241, 223, 184, 0.32)), url("../img/weather/smoke_texture2714-min.jpg") center center/cover no-repeat;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.weather-scene__smoke {
  animation: weather-smokebg 60s infinite alternate;
  background: url("../img/weather/smoke-min.png") center center/cover no-repeat;
  height: 120%;
  left: -10%;
  opacity: 0.5;
  position: absolute;
  top: -10%;
  transform: translate3d(0, 0, 0) rotate(0.01deg);
  width: 120%;
  will-change: transform;
  z-index: 1;
}

.weather-scene__sky,
.weather-scene__precipitation,
.weather-scene__wind-lines,
.weather-scene__stars,
.weather-scene__mist,
.weather-scene__flash {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.weather-scene__sky {
  z-index: 3;
}

.weather-scene__precipitation,
.weather-scene__wind-lines,
.weather-scene__stars,
.weather-scene__mist {
  z-index: 4;
}

.weather-scene__horizon {
  background: radial-gradient(ellipse at 72% 100%, rgba(255, 255, 255, 0.42), transparent 52%), linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28));
  bottom: 0;
  height: 44%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

.weather-scene__horizon::before {
  animation: weather-horizon-glow 7s ease-in-out infinite;
  background: radial-gradient(ellipse at 30% 100%, rgba(252, 211, 77, 0.34), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.weather-scene__sun {
  animation: weather-sun-float 12s ease-in-out infinite;
  background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.98) 0 7%, transparent 8%), radial-gradient(circle at 44% 42%, #fffdf0 0 18%, #fff2a8 34%, #ffd36a 58%, #f6a93f 100%);
  border-radius: 50%;
  box-shadow: inset -10px -12px 18px rgba(207, 112, 24, 0.18), inset 8px 8px 16px rgba(255, 255, 255, 0.32), 0 0 24px rgba(255, 236, 168, 0.85), 0 0 74px rgba(255, 203, 92, 0.46), 0 0 138px rgba(255, 212, 111, 0.24);
  height: 64px;
  left: 13%;
  position: absolute;
  top: 16%;
  width: 64px;
  z-index: 3;
}

.weather-scene__sun::before {
  animation: weather-light 8.5s ease-in-out infinite;
  background: radial-gradient(circle, rgba(255, 246, 205, 0.56) 0 20%, rgba(255, 226, 141, 0.22) 48%, transparent 72%);
  border-radius: 50%;
  content: "";
  filter: blur(2px);
  inset: -48px;
  position: absolute;
}

.weather-scene__sun::after {
  animation: weather-light 11s ease-in-out infinite reverse;
  background: radial-gradient(circle, rgba(255, 244, 199, 0.24), rgba(255, 223, 137, 0.1) 42%, transparent 70%);
  border-radius: 50%;
  content: "";
  filter: blur(10px);
  inset: -82px;
  opacity: 0.9;
  position: absolute;
  z-index: -1;
}

.weather-scene__moon {
  background: radial-gradient(circle at 33% 32%, rgba(255, 255, 255, 0.95) 0 5%, transparent 6%), radial-gradient(circle at 64% 28%, rgba(203, 213, 225, 0.52) 0 6%, transparent 7%), radial-gradient(circle at 48% 62%, rgba(148, 163, 184, 0.34) 0 5%, transparent 6%), radial-gradient(circle at 36% 72%, rgba(226, 232, 240, 0.68) 0 4%, transparent 5%), radial-gradient(circle at 42% 38%, #ffffff 0 18%, #e5e7eb 50%, #cbd5e1 100%);
  border-radius: 50%;
  box-shadow: inset -7px -7px 11px rgba(71, 85, 105, 0.22), inset 5px 5px 9px rgba(255, 255, 255, 0.36), 0 0 18px rgba(226, 232, 240, 0.42), 0 0 44px rgba(148, 163, 184, 0.16);
  height: 42px;
  left: 16%;
  overflow: hidden;
  position: absolute;
  top: 19%;
  width: 42px;
  z-index: 1;
}

.weather-scene__moon::after {
  background: linear-gradient(155deg, rgba(2, 6, 23, 0.98), rgba(23, 37, 84, 0.94) 62%, rgba(51, 65, 85, 0.9));
  border-radius: 50%;
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(14px);
}

.weather-scene__moon--new {
  background: #1e293b;
}

.weather-scene__moon--new::after {
  display: none;
}

.weather-scene__moon--waxing-crescent::after {
  transform: translateX(15px);
}

.weather-scene__moon--first-quarter::after {
  border-radius: 0 50% 50% 0;
  left: 50%;
  transform: none;
}

.weather-scene__moon--waxing-gibbous::after {
  transform: translateX(30px);
}

.weather-scene__moon--full::after {
  display: none;
}

.weather-scene__moon--waning-gibbous::after {
  transform: translateX(-30px);
}

.weather-scene__moon--last-quarter::after {
  border-radius: 50% 0 0 50%;
  right: 50%;
  transform: none;
}

.weather-scene__moon--waning-crescent::after {
  transform: translateX(-15px);
}

.weather-scene__stars {
  opacity: 0;
  z-index: 1;
}

.weather-scene--night .weather-scene__stars {
  opacity: 1;
}

.weather-scene__cloud {
  --cloud-scale: 1;
  --cloud-start: -190px;
  --cloud-end: calc(100% + 190px);
  animation: weather-cloud-drift 48s linear infinite;
  background: radial-gradient(ellipse at 26% 58%, rgba(255, 255, 255, 0.62) 0 34%, transparent 36%), radial-gradient(ellipse at 48% 38%, rgba(255, 255, 255, 0.68) 0 35%, transparent 37%), radial-gradient(ellipse at 72% 58%, rgba(255, 255, 255, 0.58) 0 34%, transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(241, 245, 249, 0.38));
  border-radius: 999px;
  filter: blur(7px);
  height: 46px;
  opacity: 0.24;
  position: absolute;
  transform: translate3d(var(--cloud-start), 0, 0) scale(var(--cloud-scale));
  width: 148px;
  will-change: transform;
  z-index: 6;
}

.weather-scene__cloud--one {
  animation-delay: -18s;
  left: 0;
  top: 28%;
}

.weather-scene__cloud--two {
  --cloud-scale: .72;
  animation-delay: -36s;
  animation-duration: 62s;
  left: 0;
  opacity: 0.18;
  top: 46%;
}

.weather-scene__cloud--three {
  --cloud-scale: 1.08;
  animation-delay: -4s;
  animation-duration: 56s;
  left: 0;
  opacity: 0.2;
  top: 52%;
}

.weather-scene--night .weather-scene__cloud {
  z-index: 7;
}

.weather-scene--night .weather-scene__cloud--one {
  opacity: 0.3;
  top: 18%;
}

.weather-scene--night .weather-scene__cloud--three {
  opacity: 0.24;
  top: 30%;
}

.weather-scene__mist::before,
.weather-scene__mist::after {
  display: none;
  animation: weather-mist 18s ease-in-out infinite;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16), transparent 68%);
  content: "";
  height: 34px;
  left: -30%;
  position: absolute;
  right: -30%;
  top: 42%;
}

.weather-scene__mist::after {
  animation-delay: -8s;
  top: 58%;
}

.weather-scene__drop,
.weather-scene__flake,
.weather-scene__hail,
.weather-scene__wind-line,
.weather-scene__star {
  position: absolute;
}

.weather-scene__drop {
  animation: weather-rain 1.18s linear infinite;
  background: linear-gradient(180deg, rgba(224, 242, 254, 0), rgba(224, 242, 254, 0.76));
  border-radius: 999px;
  height: 24px;
  top: -22px;
  transform: rotate(11deg);
  width: 2px;
  will-change: transform;
}

.weather-scene__flake {
  animation: weather-snow 7.8s linear infinite;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.45));
  border-radius: 50%;
  height: 5px;
  top: -10px;
  width: 5px;
  will-change: transform;
}

.weather-scene__hail {
  animation: weather-hail 1.55s linear infinite;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 50%;
  height: 6px;
  top: -10px;
  width: 6px;
  will-change: transform;
}

.weather-scene__wind-line {
  animation: weather-wind 2.2s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  border-radius: 999px;
  height: 2px;
  left: -42%;
  width: 42%;
  will-change: transform;
}

.weather-scene__star {
  animation: weather-star 3.4s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  height: 2px;
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.72);
  width: 2px;
}

.weather-scene__bolt {
  animation: weather-bolt 4.2s steps(1, end) infinite;
  background: #fde047;
  clip-path: polygon(42% 0, 70% 0, 56% 36%, 82% 36%, 32% 100%, 44% 54%, 20% 54%);
  height: 58px;
  left: 52%;
  opacity: 0;
  position: absolute;
  top: 34%;
  width: 28px;
  z-index: 5;
}

.weather-scene__flash {
  animation: weather-flash 4.2s steps(1, end) infinite;
  background: rgba(255, 255, 255, 0.62);
  opacity: 0;
  z-index: 4;
}

.weather-scene--sunny .weather-scene__cloud,
.weather-scene--night .weather-scene__sun,
.weather-scene--cloudy .weather-scene__sun,
.weather-scene--rain .weather-scene__sun,
.weather-scene--storm .weather-scene__sun,
.weather-scene--hail .weather-scene__sun,
.weather-scene--snow .weather-scene__sun {
  display: none;
}

.weather-scene--sunny .weather-scene__box {
  background: radial-gradient(circle at 14% 18%, rgba(255, 242, 180, 0.5), transparent 25%), linear-gradient(180deg, #59b9f2 0%, #91d5fb 52%, #d8f2ff 100%);
}

.weather-scene--sunny .weather-scene__smoke {
  display: none;
}

.weather-scene--sunny .weather-scene__horizon {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(238, 250, 255, 0.3));
  height: 28%;
}

.weather-scene--sunny .weather-scene__mist::before,
.weather-scene--sunny .weather-scene__mist::after {
  display: none;
}

.weather-widget--home .weather-scene--sunny .weather-scene__sun {
  height: 82px;
  left: 11%;
  top: 14%;
  width: 82px;
}

.weather-scene--cloudy .weather-scene__box {
  background: linear-gradient(155deg, rgba(203, 213, 225, 0.64), rgba(148, 163, 184, 0.58)), url("../img/weather/smoke_texture2714-min.jpg") center center/cover no-repeat;
}

.weather-scene--rain .weather-scene__box {
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.72), rgba(71, 85, 105, 0.64)), url("../img/weather/smoke_texture2714-min.jpg") center center/cover no-repeat;
}

.weather-scene--storm .weather-scene__box {
  background: radial-gradient(circle at 72% 20%, rgba(250, 204, 21, 0.12), transparent 18%), linear-gradient(155deg, rgba(2, 6, 23, 0.78), rgba(30, 41, 59, 0.72)), url("../img/weather/smoke_texture2714-min.jpg") center center/cover no-repeat;
}

.weather-scene--hail .weather-scene__box {
  background: linear-gradient(155deg, rgba(226, 232, 240, 0.62), rgba(148, 163, 184, 0.54)), url("../img/weather/smoke_texture2714-min.jpg") center center/cover no-repeat;
}

.weather-scene--snow .weather-scene__box {
  background: linear-gradient(155deg, rgba(219, 234, 254, 0.58), rgba(248, 250, 252, 0.68)), url("../img/weather/smoke_texture2714-min.jpg") center center/cover no-repeat;
}

.weather-scene--strong-wind .weather-scene__box {
  background: linear-gradient(155deg, rgba(191, 215, 234, 0.62), rgba(164, 173, 184, 0.56)), url("../img/weather/smoke_texture2714-min.jpg") center center/cover no-repeat;
}

.weather-scene--night .weather-scene__box {
  background: linear-gradient(155deg, rgba(2, 6, 23, 0.7), rgba(23, 37, 84, 0.64) 62%, rgba(51, 65, 85, 0.62)), url("../img/weather/smoke_texture2714-min.jpg") center center/cover no-repeat;
}

.weather-scene--cloudy .weather-scene__smoke,
.weather-scene--rain .weather-scene__smoke,
.weather-scene--storm .weather-scene__smoke {
  opacity: 0.66;
}

.weather-scene--snow .weather-scene__smoke,
.weather-scene--hail .weather-scene__smoke {
  opacity: 0.44;
}

.weather-scene--strong-wind .weather-scene__smoke {
  animation-duration: 36s;
  opacity: 0.58;
}

.weather-scene--night .weather-scene__smoke {
  opacity: 0.32;
}

.weather-alerts {
  align-self: center;
  display: grid;
  gap: 0.45rem;
  min-width: 210px;
  pointer-events: auto;
}

.weather-alert {
  animation: weather-alert-in 0.28s ease both;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-left: 4px solid var(--alert-color, #0ea5e9);
  border-radius: 0.75rem;
  color: #0f172a;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1.75rem 1fr auto;
  padding: 0.6rem;
}

@supports (backdrop-filter: blur(10px)) {
  .weather-alert {
    backdrop-filter: blur(10px);
  }
}
.weather-alert--watch {
  --alert-color: #f59e0b;
}

.weather-alert--warning {
  --alert-color: #ef4444;
}

.weather-alert--danger {
  --alert-color: #7f1d1d;
}

.weather-alert--info {
  --alert-color: #0ea5e9;
}

.weather-widget--home .weather-alert {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 4px solid var(--alert-color, #fff);
  box-shadow: 0 10px 20px rgba(76, 5, 10, 0.16);
  padding: 0.55rem;
}

.weather-widget--home .weather-alert--watch {
  --alert-color: #fbbf24;
}

.weather-widget--home .weather-alert--warning,
.weather-widget--home .weather-alert--danger {
  --alert-color: #fff;
}

.weather-alert__icon {
  align-items: center;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 0.55rem;
  color: var(--alert-color);
  display: inline-flex;
  font-size: 0.95rem;
  height: 1.75rem;
  justify-content: center;
  width: 1.75rem;
}

.weather-alert__title {
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 0.12rem;
}

.weather-alert__description {
  color: #52627a;
  font-size: 0.78rem;
  line-height: 1.25;
  margin: 0;
}

.weather-alert__close {
  align-items: center;
  background: transparent;
  border: 0;
  color: #64748b;
  display: inline-flex;
  font-size: 1.1rem;
  height: 1.4rem;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 1.4rem;
}

.weather-scene__drop:nth-child(1),
.weather-scene__flake:nth-child(1),
.weather-scene__hail:nth-child(1) {
  animation-delay: 0.13s;
  left: 37%;
}

.weather-scene__flake:nth-child(1) {
  opacity: 0.55;
}

.weather-scene__drop:nth-child(2),
.weather-scene__flake:nth-child(2),
.weather-scene__hail:nth-child(2) {
  animation-delay: 0.26s;
  left: 74%;
}

.weather-scene__flake:nth-child(2) {
  opacity: 0.65;
}

.weather-scene__drop:nth-child(3),
.weather-scene__flake:nth-child(3),
.weather-scene__hail:nth-child(3) {
  animation-delay: 0.39s;
  left: 11%;
}

.weather-scene__flake:nth-child(3) {
  opacity: 0.75;
}

.weather-scene__drop:nth-child(4),
.weather-scene__flake:nth-child(4),
.weather-scene__hail:nth-child(4) {
  animation-delay: 0.52s;
  left: 48%;
}

.weather-scene__flake:nth-child(4) {
  opacity: 0.85;
}

.weather-scene__drop:nth-child(5),
.weather-scene__flake:nth-child(5),
.weather-scene__hail:nth-child(5) {
  animation-delay: 0.65s;
  left: 85%;
}

.weather-scene__flake:nth-child(5) {
  opacity: 0.45;
}

.weather-scene__drop:nth-child(6),
.weather-scene__flake:nth-child(6),
.weather-scene__hail:nth-child(6) {
  animation-delay: 0.78s;
  left: 22%;
}

.weather-scene__flake:nth-child(6) {
  opacity: 0.55;
}

.weather-scene__drop:nth-child(7),
.weather-scene__flake:nth-child(7),
.weather-scene__hail:nth-child(7) {
  animation-delay: 0.91s;
  left: 59%;
}

.weather-scene__flake:nth-child(7) {
  opacity: 0.65;
}

.weather-scene__drop:nth-child(8),
.weather-scene__flake:nth-child(8),
.weather-scene__hail:nth-child(8) {
  animation-delay: 1.04s;
  left: 96%;
}

.weather-scene__flake:nth-child(8) {
  opacity: 0.75;
}

.weather-scene__drop:nth-child(9),
.weather-scene__flake:nth-child(9),
.weather-scene__hail:nth-child(9) {
  animation-delay: 1.17s;
  left: 33%;
}

.weather-scene__flake:nth-child(9) {
  opacity: 0.85;
}

.weather-scene__drop:nth-child(10),
.weather-scene__flake:nth-child(10),
.weather-scene__hail:nth-child(10) {
  animation-delay: 1.3s;
  left: 70%;
}

.weather-scene__flake:nth-child(10) {
  opacity: 0.45;
}

.weather-scene__drop:nth-child(11),
.weather-scene__flake:nth-child(11),
.weather-scene__hail:nth-child(11) {
  animation-delay: 1.43s;
  left: 7%;
}

.weather-scene__flake:nth-child(11) {
  opacity: 0.55;
}

.weather-scene__drop:nth-child(12),
.weather-scene__flake:nth-child(12),
.weather-scene__hail:nth-child(12) {
  animation-delay: 1.56s;
  left: 44%;
}

.weather-scene__flake:nth-child(12) {
  opacity: 0.65;
}

.weather-scene__drop:nth-child(13),
.weather-scene__flake:nth-child(13),
.weather-scene__hail:nth-child(13) {
  animation-delay: 1.69s;
  left: 81%;
}

.weather-scene__flake:nth-child(13) {
  opacity: 0.75;
}

.weather-scene__drop:nth-child(14),
.weather-scene__flake:nth-child(14),
.weather-scene__hail:nth-child(14) {
  animation-delay: 1.82s;
  left: 18%;
}

.weather-scene__flake:nth-child(14) {
  opacity: 0.85;
}

.weather-scene__drop:nth-child(15),
.weather-scene__flake:nth-child(15),
.weather-scene__hail:nth-child(15) {
  animation-delay: 1.95s;
  left: 55%;
}

.weather-scene__flake:nth-child(15) {
  opacity: 0.45;
}

.weather-scene__drop:nth-child(16),
.weather-scene__flake:nth-child(16),
.weather-scene__hail:nth-child(16) {
  animation-delay: 2.08s;
  left: 92%;
}

.weather-scene__flake:nth-child(16) {
  opacity: 0.55;
}

.weather-scene__drop:nth-child(17),
.weather-scene__flake:nth-child(17),
.weather-scene__hail:nth-child(17) {
  animation-delay: 2.21s;
  left: 29%;
}

.weather-scene__flake:nth-child(17) {
  opacity: 0.65;
}

.weather-scene__drop:nth-child(18),
.weather-scene__flake:nth-child(18),
.weather-scene__hail:nth-child(18) {
  animation-delay: 2.34s;
  left: 66%;
}

.weather-scene__flake:nth-child(18) {
  opacity: 0.75;
}

.weather-scene__drop:nth-child(19),
.weather-scene__flake:nth-child(19),
.weather-scene__hail:nth-child(19) {
  animation-delay: 2.47s;
  left: 3%;
}

.weather-scene__flake:nth-child(19) {
  opacity: 0.85;
}

.weather-scene__drop:nth-child(20),
.weather-scene__flake:nth-child(20),
.weather-scene__hail:nth-child(20) {
  animation-delay: 2.6s;
  left: 40%;
}

.weather-scene__flake:nth-child(20) {
  opacity: 0.45;
}

.weather-scene__drop:nth-child(21),
.weather-scene__flake:nth-child(21),
.weather-scene__hail:nth-child(21) {
  animation-delay: 2.73s;
  left: 77%;
}

.weather-scene__flake:nth-child(21) {
  opacity: 0.55;
}

.weather-scene__drop:nth-child(22),
.weather-scene__flake:nth-child(22),
.weather-scene__hail:nth-child(22) {
  animation-delay: 2.86s;
  left: 14%;
}

.weather-scene__flake:nth-child(22) {
  opacity: 0.65;
}

.weather-scene__drop:nth-child(23),
.weather-scene__flake:nth-child(23),
.weather-scene__hail:nth-child(23) {
  animation-delay: 2.99s;
  left: 51%;
}

.weather-scene__flake:nth-child(23) {
  opacity: 0.75;
}

.weather-scene__drop:nth-child(24),
.weather-scene__flake:nth-child(24),
.weather-scene__hail:nth-child(24) {
  animation-delay: 3.12s;
  left: 88%;
}

.weather-scene__flake:nth-child(24) {
  opacity: 0.85;
}

.weather-scene__wind-line:nth-child(1) {
  animation-delay: 0.17s;
  top: 18%;
}

.weather-scene__wind-line:nth-child(2) {
  animation-delay: 0.34s;
  top: 26%;
}

.weather-scene__wind-line:nth-child(3) {
  animation-delay: 0.51s;
  top: 34%;
}

.weather-scene__wind-line:nth-child(4) {
  animation-delay: 0.68s;
  top: 42%;
}

.weather-scene__wind-line:nth-child(5) {
  animation-delay: 0.85s;
  top: 50%;
}

.weather-scene__wind-line:nth-child(6) {
  animation-delay: 1.02s;
  top: 58%;
}

.weather-scene__wind-line:nth-child(7) {
  animation-delay: 1.19s;
  top: 66%;
}

.weather-scene__wind-line:nth-child(8) {
  animation-delay: 1.36s;
  top: 74%;
}

.weather-scene__wind-line:nth-child(9) {
  animation-delay: 1.53s;
  top: 82%;
}

.weather-scene__wind-line:nth-child(10) {
  animation-delay: 1.7s;
  top: 90%;
}

.weather-scene__star:nth-child(1) {
  animation-delay: -0.2s;
  height: 1px;
  left: 4%;
  opacity: 0.58;
  top: 12%;
  width: 1px;
}

.weather-scene__star:nth-child(2) {
  animation-delay: -0.9s;
  height: 2px;
  left: 11%;
  opacity: 0.78;
  top: 38%;
  width: 2px;
}

.weather-scene__star:nth-child(3) {
  animation-delay: -1.6s;
  height: 1px;
  left: 18%;
  opacity: 0.64;
  top: 18%;
  width: 1px;
}

.weather-scene__star:nth-child(4) {
  animation-delay: -2.4s;
  height: 2px;
  left: 23%;
  opacity: 0.7;
  top: 67%;
  width: 2px;
}

.weather-scene__star:nth-child(5) {
  animation-delay: -0.5s;
  height: 1px;
  left: 29%;
  opacity: 0.55;
  top: 9%;
  width: 1px;
}

.weather-scene__star:nth-child(6) {
  animation-delay: -1.9s;
  height: 1px;
  left: 34%;
  opacity: 0.62;
  top: 46%;
  width: 1px;
}

.weather-scene__star:nth-child(7) {
  animation-delay: -2.8s;
  height: 2px;
  left: 38%;
  opacity: 0.84;
  top: 24%;
  width: 2px;
}

.weather-scene__star:nth-child(8) {
  animation-delay: -1.2s;
  height: 1px;
  left: 43%;
  opacity: 0.52;
  top: 71%;
  width: 1px;
}

.weather-scene__star:nth-child(9) {
  animation-delay: -3.1s;
  height: 1px;
  left: 49%;
  opacity: 0.66;
  top: 14%;
  width: 1px;
}

.weather-scene__star:nth-child(10) {
  animation-delay: -0.7s;
  height: 2px;
  left: 53%;
  opacity: 0.76;
  top: 54%;
  width: 2px;
}

.weather-scene__star:nth-child(11) {
  animation-delay: -2.2s;
  height: 1px;
  left: 58%;
  opacity: 0.58;
  top: 31%;
  width: 1px;
}

.weather-scene__star:nth-child(12) {
  animation-delay: -3.4s;
  height: 1px;
  left: 62%;
  opacity: 0.62;
  top: 76%;
  width: 1px;
}

.weather-scene__star:nth-child(13) {
  animation-delay: -1.5s;
  height: 2px;
  left: 67%;
  opacity: 0.8;
  top: 18%;
  width: 2px;
}

.weather-scene__star:nth-child(14) {
  animation-delay: -0.4s;
  height: 1px;
  left: 71%;
  opacity: 0.54;
  top: 43%;
  width: 1px;
}

.weather-scene__star:nth-child(15) {
  animation-delay: -2.6s;
  height: 1px;
  left: 75%;
  opacity: 0.6;
  top: 8%;
  width: 1px;
}

.weather-scene__star:nth-child(16) {
  animation-delay: -1.1s;
  height: 2px;
  left: 79%;
  opacity: 0.74;
  top: 63%;
  width: 2px;
}

.weather-scene__star:nth-child(17) {
  animation-delay: -3s;
  height: 1px;
  left: 83%;
  opacity: 0.56;
  top: 29%;
  width: 1px;
}

.weather-scene__star:nth-child(18) {
  animation-delay: -1.8s;
  height: 1px;
  left: 87%;
  opacity: 0.64;
  top: 73%;
  width: 1px;
}

.weather-scene__star:nth-child(19) {
  animation-delay: -0.8s;
  height: 2px;
  left: 91%;
  opacity: 0.72;
  top: 15%;
  width: 2px;
}

.weather-scene__star:nth-child(20) {
  animation-delay: -2.1s;
  height: 1px;
  left: 95%;
  opacity: 0.5;
  top: 48%;
  width: 1px;
}

.weather-scene__star:nth-child(21) {
  animation-delay: -3.3s;
  height: 1px;
  left: 7%;
  opacity: 0.48;
  top: 74%;
  width: 1px;
}

.weather-scene__star:nth-child(22) {
  animation-delay: -2.7s;
  height: 1px;
  left: 15%;
  opacity: 0.6;
  top: 57%;
  width: 1px;
}

.weather-scene__star:nth-child(23) {
  animation-delay: -1.4s;
  height: 2px;
  left: 27%;
  opacity: 0.82;
  top: 35%;
  width: 2px;
}

.weather-scene__star:nth-child(24) {
  animation-delay: -0.6s;
  height: 1px;
  left: 46%;
  opacity: 0.5;
  top: 82%;
  width: 1px;
}

.weather-scene__star:nth-child(25) {
  animation-delay: -2.9s;
  height: 1px;
  left: 56%;
  opacity: 0.54;
  top: 7%;
  width: 1px;
}

.weather-scene__star:nth-child(26) {
  animation-delay: -1.7s;
  height: 2px;
  left: 69%;
  opacity: 0.7;
  top: 58%;
  width: 2px;
}

.weather-scene__star:nth-child(27) {
  animation-delay: -3.6s;
  height: 1px;
  left: 82%;
  opacity: 0.52;
  top: 82%;
  width: 1px;
}

.weather-scene__star:nth-child(28) {
  animation-delay: -2.3s;
  height: 1px;
  left: 97%;
  opacity: 0.58;
  top: 27%;
  width: 1px;
}

@keyframes weather-smokebg {
  25% {
    transform: translate3d(100px, 0, 0) rotate(0.01deg);
  }
  50% {
    transform: translate3d(75px, -25px, 0) rotate(0.01deg);
  }
  75% {
    transform: translate3d(45px, 30px, 0) rotate(0.01deg);
  }
  100% {
    transform: translate3d(25px, -15px, 0) rotate(0.01deg);
  }
}
@keyframes weather-light {
  50% {
    opacity: 0.68;
    transform: scale(1.14);
  }
}
@keyframes weather-sun-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(6px, -5px, 0) scale(1.04);
  }
}
@keyframes weather-sun-rays {
  to {
    transform: rotate(360deg);
  }
}
@keyframes weather-horizon-glow {
  0%, 100% {
    opacity: 0.42;
    transform: translateX(-2%);
  }
  50% {
    opacity: 0.82;
    transform: translateX(3%);
  }
}
@keyframes weather-cloud-drift {
  0% {
    transform: translate3d(var(--cloud-start), 2px, 0) scale(var(--cloud-scale));
  }
  50% {
    transform: translate3d(45%, -4px, 0) scale(var(--cloud-scale));
  }
  100% {
    transform: translate3d(var(--cloud-end), 3px, 0) scale(var(--cloud-scale));
  }
}
@keyframes weather-mist {
  0% {
    transform: translateX(-18%);
  }
  50% {
    transform: translateX(12%);
  }
  100% {
    transform: translateX(-18%);
  }
}
@keyframes weather-rain {
  to {
    transform: translate3d(-24px, 150px, 0) rotate(11deg);
  }
}
@keyframes weather-snow {
  50% {
    transform: translate3d(12px, 72px, 0);
  }
  to {
    transform: translate3d(-8px, 144px, 0);
  }
}
@keyframes weather-hail {
  to {
    transform: translate3d(-8px, 142px, 0);
  }
}
@keyframes weather-wind {
  to {
    transform: translateX(360%);
  }
}
@keyframes weather-star {
  50% {
    opacity: 0.35;
    transform: scale(0.72);
  }
}
@keyframes weather-bolt {
  0%, 88%, 100% {
    opacity: 0;
  }
  90%, 94% {
    opacity: 1;
  }
}
@keyframes weather-flash {
  0%, 88%, 100% {
    opacity: 0;
  }
  90% {
    opacity: 0.42;
  }
}
@keyframes weather-alert-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 991.98px) {
  .weather-widget__panel {
    grid-template-columns: 160px minmax(0, 1fr);
  }
  .weather-widget--home .weather-widget__panel {
    grid-template-columns: 1fr;
  }
  .weather-widget--home .weather-widget__info,
  .weather-widget--home .weather-widget__safety {
    grid-column: 1;
  }
  .weather-widget--home .weather-widget__info {
    min-height: 220px;
  }
  .weather-widget--home .weather-widget__safety {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    grid-row: 2;
  }
  .weather-alerts {
    grid-column: 1/-1;
    min-width: 0;
  }
}
@media (max-width: 575.98px) {
  .weather-widget {
    padding: 0.65rem 0;
  }
  .weather-widget__panel {
    grid-template-columns: 1fr;
  }
  .weather-widget--home .weather-widget__panel {
    min-height: 0;
  }
  .weather-widget--home .weather-widget__info {
    min-height: 170px;
    padding: 1rem;
  }
  .weather-scene {
    min-height: 96px;
  }
  .weather-widget--home .weather-scene {
    min-height: 170px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .weather-scene *,
  .weather-alert {
    animation: none !important;
    transition: none !important;
  }
}
/* Keep the weather module crisp enough to match the site instead of soft dashboard cards. */
.weather-widget__panel,
.weather-scene,
.weather-widget--home .weather-scene,
.weather-widget__alarm,
.weather-alert,
.weather-alert__icon {
  border-radius: 2px;
}

.weather-widget__panel,
.weather-widget--home .weather-widget__panel {
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.weather-widget--home .weather-widget__safety {
  background: #b5161d;
}

.weather-alert,
.weather-widget--home .weather-alert {
  box-shadow: 0 6px 14px rgba(76, 5, 10, 0.12);
}

.history-chronicle-body {
  background: #f3f0e7;
  color: #20231e;
}

.history-page {
  --paper:#f5f1e8;
  --paper-dark:#e9e3d7;
  --ink:#252720;
  --green:#203b2b;
  --deep:#132019;
  --gold:#9a7332;
  --muted:#686960;
  overflow: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(1rem, 0.97rem + 0.12vw, 1.08rem);
  line-height: 1.72;
}

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

.history-page h1, .history-page h2, .history-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: inherit;
  text-wrap: balance;
}

.history-page p {
  text-wrap: pretty;
}

.history-page a {
  text-underline-offset: 0.2em;
}

.history-page section[id], .history-event[id] {
  scroll-margin-top: 8.5rem;
}

.history-overline {
  margin: 0 0 1rem;
  color: var(--gold);
  font: 700 0.72rem/1.2 system-ui, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.history-masthead {
  position: relative;
  min-height: clamp(31rem, 66vh, 40rem);
  display: grid;
  align-items: end;
  padding: clamp(7rem, 11vw, 10rem) 0 clamp(3.5rem, 6vw, 5rem);
  color: #ede9dc;
  background: var(--deep);
}

.history-masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: linear-gradient(105deg, transparent 0 62%, #b9a980 62% 62.08%, transparent 62.08%);
}

.history-masthead__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 25rem);
  align-items: end;
  gap: 3rem;
}

.history-masthead h1 {
  margin: 0;
  max-width: 760px;
  color: #f3f0e7;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.history-deck {
  max-width: 42rem;
  margin: 2.2rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.45;
}

.history-place {
  margin: 0;
  color: #b9b6aa;
  font: 500 0.78rem/1.4 system-ui, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.history-masthead__folio {
  justify-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  width: min(100%, 20rem);
  border-top: 1px solid #8d8878;
  padding-top: 1rem;
  font-family: system-ui, sans-serif;
}

.history-masthead__folio span {
  font: 400 2.5rem/1 Georgia, serif;
  color: #c69b4b;
}

.history-masthead__folio b {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.history-masthead__folio i {
  grid-column: 1/-1;
  height: 4rem;
  border-left: 1px solid #8d8878;
  margin-left: 1.15rem;
}

.history-chapters {
  position: sticky;
  z-index: 20;
  top: 74px;
  border-bottom: 1px solid #cbc4b5;
  background: rgba(243, 240, 231, 0.97);
  backdrop-filter: blur(10px);
}

.history-chapters__scroll {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.7rem);
  overflow-x: auto;
  scrollbar-width: thin;
}

.history-chapters a {
  flex: 0 0 auto;
  min-height: 3.75rem;
  display: grid;
  place-items: center;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font: 700 0.69rem/1 system-ui, sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.history-chapters a:hover, .history-chapters a:focus-visible, .history-chapters a.is-active {
  color: var(--green);
  border-color: var(--gold);
}

.history-opening {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.history-reading-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) minmax(0, 48rem);
  justify-content: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.history-margin-note {
  border-top: 1px solid var(--gold);
  padding-top: 0.8rem;
  color: var(--muted);
  font: 400 0.79rem/1.55 system-ui, sans-serif;
}

.history-margin-note span {
  display: block;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.history-margin-note p {
  margin: 0.6rem 0;
}

.history-prose h2, .history-section-head h2, .history-map-feature h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(2.25rem, 4.1vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.history-prose > p {
  max-width: 68ch;
}

.history-dropcap::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--green);
  font: 400 4.2em/0.76 Georgia, serif;
}

.history-lead {
  font: 400 clamp(1.2rem, 1.8vw, 1.55rem)/1.5 Georgia, serif;
}

.history-map-feature {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--paper-dark);
  border-block: 1px solid #d1caba;
}

.history-map-feature__heading {
  max-width: 54rem;
  margin-bottom: 3rem;
}

.history-map-image {
  margin: 0;
  border-top: 1px solid #a9a18e;
}

.history-map-image a {
  display: block;
  background: #d8d0bd;
}

.history-map-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 940px);
  object-fit: contain;
  object-position: center;
}

.history-map-image figcaption {
  max-width: 78rem;
  padding: 1.15rem 0 1.5rem;
  border-bottom: 1px solid #a9a18e;
  color: var(--muted);
  font: 400 0.82rem/1.6 system-ui, sans-serif;
}

.history-map-image figcaption strong {
  color: var(--ink);
}

.history-map-image figcaption a {
  display: inline;
  color: var(--green);
  background: none;
  font-weight: 700;
}

.history-map-viewer {
  border-top: 1px solid #9f9788;
}

.history-map-tabs {
  display: flex;
  gap: 0;
  border-inline: 1px solid #9f9788;
  background: #d1c9b8;
}

.history-map-tabs button {
  min-height: 3.25rem;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-right: 1px solid #9f9788;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #56564f;
  font: 800 0.72rem/1.2 system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.history-map-tabs button[aria-selected=true] {
  border-bottom-color: var(--gold);
  background: var(--paper);
  color: var(--green);
}

.history-map-tabs button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.history-map-panel[hidden] {
  display: none;
}

.history-modern-map {
  border-inline: 1px solid #9f9788;
  background: var(--paper);
}

.history-modern-map iframe {
  display: block;
  width: 100%;
  height: clamp(28rem, 62vw, 52rem);
  border: 0;
}

.history-modern-map p {
  margin: 0;
  padding: 1rem 1.25rem;
  color: var(--muted);
  font: 400 0.82rem/1.5 system-ui, sans-serif;
}

.history-modern-map a {
  color: var(--green);
  font-weight: 700;
}

.history-map-note {
  max-width: 72ch;
  margin: 2rem 0 0 auto;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}

.history-timeline {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.history-section-head {
  max-width: 55rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.history-section-head > p:last-child {
  max-width: 62ch;
}

.history-timeline__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.history-timeline__list::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0;
  left: calc(25% - 1px);
  width: 1px;
  background: #bbb3a3;
}

.history-event {
  position: relative;
  display: grid;
  grid-template-columns: 25% minmax(0, 1fr);
  min-height: 15rem;
}

.history-event::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: calc(25% - 5px);
  width: 9px;
  height: 9px;
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.history-event__date {
  padding: 0 clamp(1.25rem, 4vw, 4rem) 3rem 0;
  text-align: right;
}

.history-event__date time {
  display: block;
  color: var(--green);
  font: 400 clamp(1.45rem, 3vw, 2.5rem)/1 Georgia, serif;
}

.history-event__date span {
  font: 700 0.65rem/1.3 system-ui, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.history-event__story {
  max-width: 46rem;
  padding: 0 0 clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
}

.history-event__story h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 400;
  line-height: 1.12;
}

.history-event__story p {
  max-width: 65ch;
}

.history-citations a {
  margin-right: 0.5rem;
  color: var(--gold);
  font: 700 0.72rem/1 system-ui, sans-serif;
  text-transform: uppercase;
}

.history-event--almanac {
  margin: 1rem 0 4.5rem;
  padding: 2.5rem 0 0.5rem;
  background: #ece6da;
}

.history-event--almanac::after {
  display: none;
}

.history-almanac {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 1.75rem 0 0;
  border-top: 1px solid #aaa28f;
}

.history-almanac div {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid #c2baaa;
}

.history-almanac dt {
  font: 400 clamp(1.55rem, 2.4vw, 2.25rem)/1 Georgia, serif;
  color: var(--green);
}

.history-almanac dd {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font: 700 0.66rem/1.3 system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.history-discrepancy {
  padding: 1rem 0;
  border-block: 1px solid #c7b58f;
  color: #5f543d;
  font: 400 0.86rem/1.55 system-ui, sans-serif;
}

.history-names {
  padding: clamp(5rem, 9vw, 9rem) 0;
  color: #ebe6da;
  background: var(--green);
}

.history-names .container {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(20rem, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.history-names__intro h2 {
  margin: 0 0 1.5rem;
  color: #f2eee3;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
}

.history-name-ledger {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #758176;
}

.history-name-ledger li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #758176;
}

.history-name-ledger b {
  font: 400 clamp(1.25rem, 2.5vw, 2.1rem)/1.1 Georgia, serif;
  overflow-wrap: anywhere;
}

.history-name-ledger time {
  color: #c9bfaa;
  font: 600 0.72rem/1.4 system-ui, sans-serif;
  text-align: right;
}

.history-names .history-discrepancy {
  grid-column: 2;
  color: #d7c8a8;
  border-color: #758176;
}

.history-gaski {
  padding: clamp(6rem, 12vw, 12rem) 0;
  background: #dddcc9;
}

.history-gaski .history-margin-note {
  border-color: #687b55;
}

.history-gaski .history-overline {
  color: #596947;
}

.history-people, .history-archive, .history-sources {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.history-people__table {
  border-top: 2px solid var(--ink);
}

.history-person {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.45fr;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #bcb4a4;
}

.history-person strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.history-person time {
  text-align: right;
  color: var(--muted);
}

.history-archive {
  background: #ded8ca;
}

.history-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.history-reference-grid article {
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  padding: 1.65rem;
  border: 1px solid #c8c0b0;
  background: rgba(255, 255, 255, 0.38);
}

.history-reference-grid span {
  font: 700 0.68rem/1 system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.history-reference-grid h3 {
  margin: 2.5rem 0 1rem;
  font-size: 1.7rem;
  font-weight: 400;
}

.history-reference-grid p {
  overflow-wrap: anywhere;
  color: var(--muted);
  font: 500 0.78rem/1.5 system-ui, sans-serif;
}

.history-reference-grid a {
  margin-top: auto;
  color: var(--green);
  font-weight: 700;
}

.history-source-list {
  border-top: 2px solid var(--ink);
}

.history-source-list article {
  display: grid;
  grid-template-columns: 11rem 1fr auto;
  gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid #bcb4a4;
  scroll-margin-top: 6rem;
}

.history-source-list span {
  color: var(--gold);
  font: 700 0.66rem/1.4 system-ui, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.history-source-list h3 {
  margin: 0;
  font-size: 1.25rem;
}

.history-source-list p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.history-source-list a {
  align-self: center;
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.history-colophon {
  padding: 3rem 0;
  color: #c7c5bc;
  background: var(--deep);
  font: 400 0.86rem/1.6 system-ui, sans-serif;
}

.history-colophon .container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.history-colophon p {
  max-width: 65rem;
  margin: 0;
}

.history-colophon a {
  color: #e1be7c;
  white-space: nowrap;
}

[data-history-reveal] {
  opacity: 1;
  transform: none;
}

.history-js [data-history-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.history-js [data-history-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Editorial timeline — calm on desktop, deliberately linear on mobile. */
.history-timeline {
  position: relative;
  background: #f6f2e8;
}

.history-timeline::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: #d4ccbc;
}

.history-timeline .container {
  max-width: 980px;
  margin-inline: auto;
}

.history-timeline .history-section-head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.history-timeline .history-section-head > p:last-child {
  margin-inline: auto;
}

.history-timeline__list {
  --axis:11rem;
  width: 100%;
  margin-inline: auto;
}

.history-timeline__list::before {
  left: var(--axis);
  top: 0;
  bottom: 2rem;
  background: #b9b19f;
}

.history-event {
  grid-template-columns: var(--axis) minmax(0, 1fr);
  min-height: 0;
}

.history-event::before {
  left: calc(var(--axis) - 7px);
  top: 0.38rem;
  width: 13px;
  height: 13px;
  border: 3px solid var(--paper);
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.history-event::after {
  content: "";
  position: absolute;
  left: var(--axis);
  right: 0;
  bottom: 2.75rem;
  height: 1px;
  background: #ddd6c8;
}

.history-event__date {
  position: relative;
  padding: 0 2rem 4.5rem 0;
}

.history-event__date time {
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  letter-spacing: -0.025em;
}

.history-event__date span {
  display: block;
  margin-top: 0.65rem;
  color: #7d776c;
  line-height: 1.45;
}

.history-event__story {
  position: relative;
  padding: 0 0 4.5rem 3.25rem;
}

.history-event__story h3 {
  position: relative;
  max-width: 22ch;
  color: var(--ink);
}

.history-event__story h3::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: -3.25rem;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.history-event__story > p:not(.history-citations):not(.history-discrepancy) {
  margin-bottom: 1.2rem;
  color: #45473f;
}

.history-citations {
  margin: 0.8rem 0 0;
}

.history-citations a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.15rem 0.35rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.history-citations a:hover, .history-citations a:focus-visible {
  border-color: currentColor;
  outline: none;
}

.history-event:nth-child(2) .history-event__date time,
.history-event:nth-child(3) .history-event__date time,
.history-event:nth-child(5) .history-event__date time,
.history-event:nth-child(7) .history-event__date time,
.history-event:nth-child(8) .history-event__date time,
.history-event:nth-child(12) .history-event__date time,
.history-event:nth-child(13) .history-event__date time,
.history-event:nth-child(14) .history-event__date time {
  color: var(--gold);
}

.history-event--almanac {
  margin: 0 0 4.5rem;
  padding: 2.5rem 0 0;
  border-block: 1px solid #c8bfad;
}

.history-event--almanac::before {
  top: 2.88rem;
}

.history-event--almanac::after {
  top: 0.02em;
  bottom: auto;
  left: auto;
  height: auto;
  background: none;
}

.history-event--almanac .history-event__date,
.history-event--almanac .history-event__story {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.history-almanac div {
  min-width: 0;
}

.history-js .history-event::before {
  transform: scale(0.85);
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.history-js .history-event.is-visible::before {
  transform: scale(1);
}

.history-js .history-event.is-visible .history-event__story h3::before {
  animation: history-rule-in 0.4s ease both;
}

.history-map-panel.is-active {
  animation: history-panel-in 0.3s ease both;
}

@keyframes history-rule-in {
  from {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}
@keyframes history-panel-in {
  from {
    opacity: 0.35;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .history-timeline__list {
    --axis:9.5rem;
  }
  .history-timeline .history-section-head {
    margin-inline: auto;
  }
  .history-event__story {
    padding-left: 3rem;
  }
  .history-event__story h3::before {
    left: -3rem;
    width: 1.8rem;
  }
  .history-almanac {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .history-page section[id], .history-event[id] {
    scroll-margin-top: 7rem;
  }
  .history-masthead {
    min-height: 40rem;
    padding-top: 8rem;
  }
  .history-masthead__grid {
    grid-template-columns: 1fr;
  }
  .history-masthead__folio {
    display: none;
  }
  .history-masthead h1 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }
  .history-chapters__scroll {
    padding-inline: 1rem;
  }
  .history-reading-grid {
    grid-template-columns: 1fr;
  }
  .history-margin-note {
    max-width: 18rem;
  }
  .history-map-sheet {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .history-map-sheet__index {
    min-height: 15rem;
  }
  .history-map-sheet__index span:nth-child(2) {
    writing-mode: horizontal-tb;
  }
  .history-map-compare {
    grid-template-columns: 1fr 2rem 1fr;
  }
  .history-map-compare a {
    grid-column: 1/-1;
  }
  .history-timeline__list::before {
    left: 5px;
  }
  .history-event {
    grid-template-columns: 1fr;
    padding-left: 1.7rem;
    min-height: 0;
  }
  .history-event::before {
    left: 1px;
  }
  .history-event__date {
    text-align: left;
    padding: 0 0 1rem;
  }
  .history-event__story {
    padding: 0 0 5rem;
  }
  .history-event--almanac {
    margin-inline: -0.75rem;
    padding: 2.5rem 0.75rem 0;
  }
  .history-almanac {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .history-names .container {
    grid-template-columns: 1fr;
  }
  .history-names .history-discrepancy {
    grid-column: auto;
  }
  .history-person {
    grid-template-columns: 1fr auto;
    gap: 0.25rem 1rem;
  }
  .history-person span {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .history-reference-grid {
    grid-template-columns: 1fr;
  }
  .history-reference-grid article {
    min-height: 14rem;
  }
  .history-source-list article {
    grid-template-columns: 1fr;
  }
  .history-source-list article {
    gap: 0.55rem;
  }
  .history-source-list a {
    justify-self: start;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .history-colophon .container {
    display: grid;
    gap: 1rem;
  }
}
@media (max-width: 767.98px) {
  .history-map-feature {
    padding-block: 3.75rem;
  }
  .history-map-feature__heading {
    margin-bottom: 2rem;
  }
  .history-map-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .history-map-tabs button {
    min-width: 0;
    min-height: 3.5rem;
    padding: 0.7rem 0.45rem;
    font-size: 0.65rem;
  }
  .history-map-image img {
    max-height: none;
  }
  .history-map-image figcaption {
    font-size: 0.78rem;
  }
  .history-modern-map iframe {
    height: 26rem;
  }
  .history-map-note {
    margin-top: 1.5rem;
  }
  .history-timeline {
    padding-block: 4.5rem 5.5rem;
  }
  .history-timeline .history-section-head {
    margin-left: 0;
    margin-bottom: 3.5rem;
    padding-left: 0.25rem;
  }
  .history-timeline__list {
    --axis:.42rem;
  }
  .history-timeline__list::before {
    left: var(--axis);
    top: 0.4rem;
    bottom: 1rem;
  }
  .history-event {
    display: block;
    padding-left: 2.15rem;
  }
  .history-event::before {
    left: 0;
    top: 0.32rem;
    width: 0.85rem;
    height: 0.85rem;
  }
  .history-event::after {
    left: 2.15rem;
    bottom: 2.6rem;
  }
  .history-event__date {
    padding: 0 0 0.9rem;
    text-align: left;
  }
  .history-event__date time {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }
  .history-event__date span {
    margin-top: 0.4rem;
    font-size: 0.64rem;
  }
  .history-event__story {
    max-width: none;
    padding: 0 0 5rem;
  }
  .history-event__story h3 {
    max-width: 20ch;
    margin-bottom: 0.8rem;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }
  .history-event__story h3::before {
    display: none;
  }
  .history-event__story > p {
    max-width: 100%;
  }
  .history-event--almanac {
    margin-inline: -0.75rem;
    padding: 2.25rem 0.75rem 0 2.9rem;
  }
  .history-event--almanac::before {
    left: 0.75rem;
    top: 2.65rem;
  }
  .history-event--almanac::after {
    right: 0.5rem;
    font-size: clamp(5rem, 28vw, 8rem);
  }
  .history-event--almanac .history-event__date,
  .history-event--almanac .history-event__story {
    padding-bottom: 1rem;
  }
  .history-event--almanac .history-event__story {
    padding-bottom: 3rem;
  }
  .history-almanac {
    gap: 0;
  }
  .history-almanac div {
    padding: 0.85rem 0.55rem;
  }
}
@media (max-width: 575.98px) {
  .history-page {
    font-size: 1rem;
    line-height: 1.65;
  }
  .history-timeline .history-section-head {
    text-align: left;
  }
  .history-event {
    padding-left: 1.85rem;
  }
  .history-event::after {
    left: 1.85rem;
  }
  .history-event__story h3 {
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
  }
  .history-event__story > p:not(.history-citations):not(.history-discrepancy) {
    color: #353831;
  }
  .history-citations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
}
@media (max-width: 359.98px) {
  .history-page {
    font-size: 1rem;
  }
  .history-masthead h1 {
    font-size: 2.85rem;
  }
  .history-almanac {
    grid-template-columns: 1fr;
  }
  .history-name-ledger li {
    display: grid;
  }
  .history-name-ledger time {
    text-align: left;
  }
}
@media (min-width: 1400px) {
  .history-page > .container, .history-page section > .container, .history-page header > .container, .history-page footer > .container {
    max-width: 1320px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .history-page * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .history-js [data-history-reveal] {
    opacity: 1;
    transform: none;
  }
}
.kgw-page {
  --cream:#faf8f3;
  --red:#c9272c;
  --yellow:#f2b51d;
  --green:#526b45;
  --ink:#252522;
  --muted:#6d6a63;
  --line:#e9e4da;
  background: #fff;
  color: var(--ink);
  font: 15px/1.65 Inter, "Segoe UI", Arial, sans-serif;
  overflow: clip;
}

.kgw-page * {
  box-sizing: border-box;
}

.kgw-page h1, .kgw-page h2, .kgw-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 18px;
}

.kgw-page h1 {
  font-size: clamp(2.75rem, 5.2vw, 5rem);
  letter-spacing: -0.04em;
}

.kgw-page h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.5rem);
  letter-spacing: -0.035em;
}

.kgw-page h3 {
  font-size: 1.28rem;
}

.kgw-page a {
  color: inherit;
}

.kgw-shell {
  width: min(1180px, 100% - 48px);
  margin: auto;
}

.kgw-skip {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 10px;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff !important;
  padding: 10px 16px;
}

.kgw-skip:focus {
  transform: none;
}

.kgw-page :focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.osp-has-kgw-page > .osp-footer {
  display: none;
}

.kgw-subnav {
  position: sticky;
  top: 74px;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.2s ease;
}

.kgw-subnav.is-stuck {
  box-shadow: 0 8px 22px rgba(37, 37, 34, 0.09);
}

.kgw-subnav__inner {
  height: 66px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.kgw-subnav__brand {
  display: flex;
  align-items: center;
  flex: none;
  gap: 9px;
  text-decoration: none;
}

.kgw-subnav__brand img {
  width: 48px;
  height: 44px;
  object-fit: cover;
  object-position: center 8%;
  border-radius: 4px;
}

.kgw-subnav__brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.kgw-subnav__brand b {
  font: 700 1rem Georgia, serif;
  letter-spacing: 0.08em;
}

.kgw-subnav__brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kgw-subnav__links {
  display: flex;
  align-items: stretch;
  gap: 22px;
  min-width: 0;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.kgw-subnav__links::-webkit-scrollbar {
  display: none;
}

.kgw-subnav__links a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 66px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.kgw-subnav__links a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  transition: right 0.2s ease;
}

.kgw-subnav__links a:hover, .kgw-subnav__links a.is-active {
  color: var(--red);
}

.kgw-subnav__links a:hover::after, .kgw-subnav__links a.is-active::after {
  right: 0;
}

.kgw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.kgw-header__inner {
  height: 94px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.kgw-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}

.kgw-brand img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  object-position: center 5%;
}

.kgw-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.kgw-brand b {
  font: 400 1.35rem Georgia, serif;
  letter-spacing: 0.18em;
}

.kgw-brand small {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 7px;
}

.kgw-nav {
  display: flex;
  gap: 27px;
  align-items: center;
}

.kgw-nav a {
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 650;
  padding: 14px 0;
  position: relative;
}

.kgw-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  background: var(--red);
  transition: right 0.25s;
}

.kgw-nav a:hover:after, .kgw-nav a.is-active:after {
  right: 0;
}

.kgw-nav__invite, .kgw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border: 1.5px solid var(--red);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 750;
  color: #fff !important;
  background: var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}

.kgw-nav__invite {
  background: #fff;
  color: var(--red) !important;
  border-radius: 14px;
  white-space: nowrap;
}

.kgw-button:hover, .kgw-nav__invite:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 39, 44, 0.15);
}

.kgw-button--outline {
  background: #fff;
  color: var(--red) !important;
}

.kgw-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: none;
  padding: 9px;
}

.kgw-menu-toggle span:not(.visually-hidden) {
  height: 2px;
  background: var(--ink);
  display: block;
  margin: 6px;
}

.kgw-hero {
  position: relative;
  padding: 64px 0 0;
  background: var(--cream);
}

.kgw-hero:before {
  content: "";
  position: absolute;
  left: -25px;
  top: 22px;
  width: 120px;
  height: 470px;
  background: url("/templates/ospkaszycewielkie/assets/img/kgw-logo.jpeg") center top/230px auto no-repeat;
  opacity: 0.24;
}

.kgw-hero__grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: 35px;
}

.kgw-hero__copy {
  padding: 45px 0 80px;
  position: relative;
  z-index: 2;
}

.kgw-eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.kgw-eyebrow:after {
  content: "  ── ✿";
  color: var(--green);
}

.kgw-hero h1 em {
  font-style: normal;
  color: var(--red);
}

.kgw-lead {
  color: var(--muted);
  max-width: 560px;
  font-size: 1.02rem;
}

.kgw-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.kgw-hero__visual {
  height: 530px;
  margin-right: calc((100vw - min(1180px, 100vw - 48px)) / -2);
  border-radius: 45% 0 0 0;
  overflow: hidden;
}

.kgw-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.kgw-facts {
  position: relative;
  z-index: 3;
  margin-top: -25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(37, 37, 34, 0.1);
  padding: 24px;
}

.kgw-facts > div {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 5px 24px;
  border-right: 1px solid var(--line);
}

.kgw-facts > div:last-child {
  border: 0;
}

.kgw-facts i, .kgw-card > i, .kgw-collab__items i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fbf3df;
  color: var(--red);
  font-size: 1.6rem;
  font-style: normal;
  flex: none;
}

.kgw-facts p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.kgw-facts strong {
  font-family: Georgia, serif;
  font-size: 1rem;
}

.kgw-facts small {
  color: var(--muted);
  font-size: 0.72rem;
}

.kgw-section {
  padding: 100px 0;
  scroll-margin-top: 90px;
  position: relative;
}

.kgw-section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}

.kgw-section-head > p:last-child {
  color: var(--muted);
}

.kgw-about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.kgw-about__content > p:not(.kgw-eyebrow) {
  color: var(--muted);
}

.kgw-values {
  list-style: none;
  padding: 10px 0;
  margin: 18px 0 28px;
}

.kgw-values li {
  margin: 9px 0;
  padding-left: 24px;
  color: #555;
}

.kgw-values li:before {
  content: "✿";
  color: var(--red);
  font-size: 0.7rem;
  margin-left: -24px;
  margin-right: 12px;
}

.kgw-photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.kgw-photo {
  border-radius: 22px;
  overflow: hidden;
  min-height: 190px;
  display: block;
}

.kgw-photo--large {
  grid-row: 1/3;
  min-height: 480px;
}

.kgw-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kgw-work {
  padding-top: 65px;
  background: #fff;
}

.kgw-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kgw-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 9px 17px 24px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(37, 37, 34, 0.045);
  transition: transform 0.25s, box-shadow 0.25s;
}

.kgw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(37, 37, 34, 0.1);
}

.kgw-card__image {
  height: 190px;
  border-radius: 20px;
  overflow: hidden;
}

.kgw-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.kgw-card:hover img {
  transform: scale(1.04);
}

.kgw-card > i {
  position: relative;
  margin: -25px 0 12px 0;
  border: 4px solid #fff;
  background: var(--red);
  color: #fff;
}

.kgw-card:nth-child(even) > i {
  background: var(--yellow);
  color: var(--ink);
}

.kgw-card h3 {
  margin-bottom: 9px;
}

.kgw-card p {
  color: var(--muted);
  min-height: 72px;
}

.kgw-card > a, .kgw-news a {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.kgw-news-section {
  background: var(--cream);
}

.kgw-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.kgw-news {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.kgw-news__image {
  height: 220px;
}

.kgw-news__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kgw-news__body {
  padding: 24px;
}

.kgw-news__meta {
  color: var(--red) !important;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.kgw-news__body > p {
  color: var(--muted);
}

.kgw-board-section {
  background: #fffdf9;
}

.kgw-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 850px;
  margin: auto;
}

.kgw-person {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 10px 10px 22px;
  box-shadow: 0 10px 35px rgba(37, 37, 34, 0.06);
}

.kgw-person > div {
  height: 235px;
  border-radius: 15px;
  overflow: hidden;
  background: #f5f1e8;
}

.kgw-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.kgw-person h3 {
  font-size: 1.15rem;
  margin: 18px 0 3px;
}

.kgw-person p {
  color: var(--red);
  font-size: 0.75rem;
  margin: 0 0 8px;
}

.kgw-person > a {
  color: var(--red);
  text-decoration: none;
}

.kgw-members {
  max-width: 760px;
  text-align: center;
  margin: 34px auto 0;
  color: var(--muted);
}

.kgw-collab {
  background: #fff;
  border-block: 1px solid var(--line);
}

.kgw-collab__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 55px;
  align-items: center;
}

.kgw-collab__grid > div:first-child p:not(.kgw-eyebrow) {
  color: var(--muted);
}

.kgw-collab__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.kgw-collab__items article {
  padding: 20px 28px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.kgw-collab__items i {
  margin: 0 auto 18px;
  background: var(--yellow);
  color: var(--ink);
}

.kgw-collab__items article:nth-child(2) i {
  background: var(--red);
  color: #fff;
}

.kgw-collab__items p {
  font-size: 0.8rem;
  color: var(--muted);
}

.kgw-gallery-section {
  background: var(--cream);
}

.kgw-gallery__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;
}

.kgw-gallery__heading h2 {
  margin: 0;
}

.kgw-gallery {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  grid-template-rows: 190px 190px;
  gap: 16px;
}

.kgw-gallery__item {
  border: 0;
  border-radius: 17px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.kgw-gallery__item--featured {
  grid-row: 1/3;
}

.kgw-gallery__item span {
  position: absolute;
  inset: auto 0 0;
  padding: 11px 16px;
  background: rgba(37, 37, 34, 0.72);
  color: #fff;
  text-align: left;
  font-size: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.25s;
}

.kgw-gallery__item:hover span {
  transform: none;
}

.kgw-contact {
  background: #fff;
}

.kgw-contact__grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.kgw-contact__grid > div:first-child > p:not(.kgw-eyebrow) {
  color: var(--muted);
  max-width: 600px;
}

.kgw-contact__details {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.kgw-contact__panel {
  background: var(--green);
  color: #fff;
  padding: 42px;
  border-radius: 22px;
}

.kgw-contact__panel h3 {
  color: #fff;
  font-size: 2rem;
}

.kgw-footer {
  border-top: 1px solid var(--line);
  padding: 55px 0 20px;
  background: #fff;
}

.kgw-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 40px;
}

.kgw-footer__brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.kgw-footer__brand img {
  width: 88px;
  height: 70px;
  object-fit: cover;
  object-position: center top;
}

.kgw-footer h2 {
  font: 700 0.8rem Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}

.kgw-footer nav a {
  display: block;
  text-decoration: none;
  margin: 4px 0;
}

.kgw-footer__osp {
  color: var(--red) !important;
  font-weight: 800;
  text-decoration: none;
}

.kgw-footer__bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.7rem;
}

.kgw-center {
  text-align: center;
  margin-top: 30px;
}

.kgw-lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  background: rgba(20, 20, 18, 0.92);
  display: grid;
  place-items: center;
  padding: 25px;
}

.kgw-lightbox[hidden] {
  display: none;
}

.kgw-lightbox__panel {
  position: relative;
  width: min(950px, 100%);
  display: grid;
  grid-template-columns: 55px 1fr 55px;
  align-items: center;
}

.kgw-lightbox__image {
  height: min(75vh, 700px);
  background: #171714 center/contain no-repeat;
}

.kgw-lightbox button {
  border: 0;
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
}

.kgw-lightbox__close {
  position: absolute;
  right: 0;
  top: -55px;
}

.kgw-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s, transform 0.6s;
}

.kgw-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .kgw-nav {
    gap: 14px;
  }
  .kgw-nav a {
    font-size: 0.7rem;
  }
  .kgw-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kgw-hero__visual {
    height: 480px;
  }
}
@media (max-width: 820px) {
  .kgw-menu-toggle {
    display: block;
  }
  .kgw-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 93px;
    background: #fff;
    padding: 18px 24px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .kgw-nav.is-open {
    display: flex;
  }
  .kgw-nav a {
    min-height: 44px;
    font-size: 0.9rem;
  }
  .kgw-nav__invite {
    display: none;
  }
  .kgw-hero__grid, .kgw-about__grid, .kgw-collab__grid, .kgw-contact__grid {
    grid-template-columns: 1fr;
  }
  .kgw-hero__visual {
    margin-right: -24px;
    height: 450px;
  }
  .kgw-facts {
    margin-top: 0;
  }
  .kgw-facts > div {
    padding: 5px 12px;
  }
  .kgw-news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kgw-collab__items {
    margin-top: 10px;
  }
  .kgw-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .kgw-shell {
    width: min(100% - 28px, 1180px);
  }
  .kgw-header__inner {
    height: 74px;
  }
  .kgw-brand img {
    width: 65px;
    height: 52px;
  }
  .kgw-brand b {
    font-size: 1rem;
  }
  .kgw-nav {
    top: 73px;
  }
  .kgw-hero {
    padding-top: 25px;
  }
  .kgw-hero__copy {
    padding: 35px 0;
  }
  .kgw-hero__visual {
    height: 340px;
    border-radius: 38% 0 0 0;
    margin-right: -14px;
  }
  .kgw-facts {
    grid-template-columns: 1fr;
    padding: 10px 18px;
    margin-top: 20px;
  }
  .kgw-facts > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 3px;
  }
  .kgw-section {
    padding: 70px 0;
  }
  .kgw-about__grid {
    gap: 40px;
  }
  .kgw-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 150px;
  }
  .kgw-photo--large {
    grid-column: 1/3;
    grid-row: auto;
    min-height: 0;
  }
  .kgw-card-grid, .kgw-news-grid, .kgw-board {
    grid-template-columns: 1fr;
  }
  .kgw-card__image {
    height: 230px;
  }
  .kgw-collab__items {
    grid-template-columns: 1fr;
  }
  .kgw-collab__items article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .kgw-gallery__heading {
    display: block;
  }
  .kgw-gallery__heading .kgw-button {
    margin-top: 20px;
  }
  .kgw-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 150px 150px;
  }
  .kgw-gallery__item--featured {
    grid-column: 1/3;
    grid-row: auto;
  }
  .kgw-footer__grid {
    grid-template-columns: 1fr;
  }
  .kgw-footer__bottom {
    display: block;
  }
  .kgw-footer__bottom span {
    display: block;
    margin-top: 6px;
  }
  .kgw-lightbox__panel {
    grid-template-columns: 45px 1fr 45px;
  }
}
@media (max-width: 820px) {
  .kgw-subnav__inner {
    width: 100%;
    gap: 12px;
    padding-left: 14px;
  }
  .kgw-subnav__brand {
    padding-right: 4px;
  }
  .kgw-subnav__links {
    padding-right: 14px;
    gap: 18px;
  }
  .kgw-subnav__links a {
    min-height: 62px;
  }
  .kgw-subnav__inner {
    height: 62px;
  }
}
@media (max-width: 480px) {
  .kgw-subnav__brand span {
    display: none;
  }
  .kgw-subnav__brand img {
    width: 44px;
    height: 40px;
  }
  .kgw-subnav__links {
    gap: 16px;
  }
  .kgw-subnav__links a {
    font-size: 0.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .kgw-page * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .kgw-reveal {
    opacity: 1;
    transform: none;
  }
  .kgw-button:hover, .kgw-card:hover {
    transform: none;
  }
}
/* Bootstrap remains the responsive foundation; these scoped rules add the KGW identity. */
.kgw-hero__visual img {
  object-position: 50% 18%;
}

.kgw-news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kgw-gallery__item:nth-child(n+6) {
  display: none;
}

.kgw-gallery__item {
  min-height: 0;
}

.kgw-card:nth-child(1) .kgw-card__image img {
  object-position: center 35%;
}

.kgw-card:nth-child(2) .kgw-card__image img {
  object-position: center 52%;
}

.kgw-card:nth-child(3) .kgw-card__image img {
  object-position: center 45%;
}

.kgw-card:nth-child(4) .kgw-card__image img {
  object-position: center 65%;
}

.kgw-page .kgw-lightbox {
  background: rgba(26, 25, 22, 0.88);
  padding: 0;
  place-items: initial;
}

.kgw-page .kgw-lightbox:not(.show) {
  display: none;
}

.kgw-page .kgw-lightbox.show {
  display: block;
}

.kgw-page .kgw-lightbox .modal-dialog {
  height: calc(100% - 2rem);
  margin-block: 1rem;
}

.kgw-page .kgw-lightbox__panel {
  display: flex;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.kgw-page .kgw-lightbox .modal-header {
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
}

.kgw-page .kgw-lightbox .modal-title {
  font-size: 1.35rem;
  margin: 0;
}

.kgw-page .kgw-lightbox .modal-body {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: var(--cream);
}

.kgw-page .kgw-lightbox__image {
  width: 100%;
  height: min(72vh, 720px);
  border-radius: 15px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.kgw-page .kgw-lightbox button.kgw-lightbox__prev, .kgw-page .kgw-lightbox button.kgw-lightbox__next {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--red);
  box-shadow: 0 7px 22px rgba(37, 37, 34, 0.12);
}

.kgw-page .kgw-lightbox .modal-footer {
  justify-content: space-between;
  padding: 12px 22px;
}

.kgw-lightbox__hint {
  color: var(--muted);
  font-size: 0.78rem;
}

.kgw-section:after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.13;
}

.kgw-about:after {
  content: "✿";
  right: 3%;
  top: 8%;
  font-size: 3rem;
  transform: rotate(18deg);
}

.kgw-work:after {
  content: "❀";
  left: 2%;
  bottom: 8%;
  font-size: 4.5rem;
  color: var(--yellow);
  transform: rotate(-16deg);
}

.kgw-news-section:after {
  content: "❧";
  right: 2%;
  top: 13%;
  font-size: 5rem;
  color: var(--green);
  transform: rotate(21deg);
}

.kgw-board-section:after {
  content: "✤";
  left: 3%;
  top: 42%;
  font-size: 3.4rem;
  color: var(--yellow);
}

.kgw-collab:after {
  content: "❀";
  right: 3%;
  bottom: 10%;
  font-size: 4rem;
  transform: rotate(25deg);
}

.kgw-gallery-section:after {
  content: "❧";
  left: 2%;
  top: 7%;
  font-size: 4.4rem;
  color: var(--green);
  transform: rotate(-30deg);
}

.kgw-section > .kgw-shell {
  position: relative;
  z-index: 1;
}

@media (max-width: 1050px) {
  .kgw-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .kgw-news-grid {
    grid-template-columns: 1fr;
  }
  .kgw-hero__visual {
    height: 390px;
  }
  .kgw-hero__visual img {
    object-position: 50% 12%;
  }
  .kgw-page .kgw-lightbox .modal-dialog {
    height: 100%;
    margin: 0;
  }
  .kgw-page .kgw-lightbox__panel {
    min-height: 100%;
    border-radius: 0;
  }
  .kgw-page .kgw-lightbox .modal-body {
    grid-template-columns: 44px 1fr 44px;
    padding: 10px;
    gap: 5px;
  }
  .kgw-page .kgw-lightbox__image {
    height: 68vh;
  }
  .kgw-lightbox__hint {
    display: none;
  }
  .kgw-section:after {
    font-size: 2.5rem;
    opacity: 0.1;
  }
}
/* Final composition and mobile polish. */
.kgw-hero h1 {
  font-size: clamp(2.45rem, 4.3vw, 4.2rem);
  max-width: 590px;
}

.kgw-hero__grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
}

.kgw-hero__visual {
  position: relative;
  height: 500px;
  margin-right: 0;
  border: 10px solid #fff;
  border-radius: 110px 22px 22px 22px;
  overflow: hidden;
  box-shadow: 24px 24px 0 #eee9df, 0 24px 60px rgba(37, 37, 34, 0.16);
}

.kgw-hero__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(82, 107, 69, 0.18);
  border-radius: 100px 13px 13px 13px;
  pointer-events: none;
}

.kgw-hero__visual img {
  object-position: center 14%;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.kgw-hero__visual.is-visible img {
  transform: scale(1.015);
}

.kgw-about__grid {
  gap: 58px;
}

.kgw-photo--large {
  min-height: 390px;
}

.kgw-photo-grid {
  grid-template-rows: 185px 185px;
}

.kgw-photo-grid .kgw-photo:not(.kgw-photo--large) {
  min-height: 0;
}

.kgw-reveal {
  transition-delay: var(--kgw-delay, 0ms);
  transition-duration: 0.7s;
}

.kgw-page #kgw-main > section:nth-child(2):before, .kgw-page #kgw-main > section:nth-child(4):before, .kgw-page #kgw-main > section:nth-child(6):before, .kgw-page #kgw-main > section:nth-child(7):before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 190px;
  height: 190px;
  background-image: url("/templates/ospkaszycewielkie/assets/img/kgw-folk-ornaments-soft.webp");
  background-repeat: no-repeat;
  background-size: 620px 414px;
  opacity: 0.13;
}

.kgw-page #kgw-main > section:nth-child(2):before {
  left: -32px;
  bottom: 8%;
  background-position: 0 100%;
  transform: rotate(-5deg);
}

.kgw-page #kgw-main > section:nth-child(4):before {
  right: -25px;
  top: 9%;
  background-position: 100% 0;
  transform: rotate(7deg);
}

.kgw-page #kgw-main > section:nth-child(6):before {
  left: -30px;
  top: 12%;
  background-position: 50% 45%;
  transform: rotate(-12deg);
}

.kgw-page #kgw-main > section:nth-child(7):before {
  right: -28px;
  bottom: 7%;
  background-position: 100% 100%;
  transform: rotate(9deg);
}

@media (max-width: 991.98px) {
  .kgw-hero__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .kgw-hero__copy {
    padding-bottom: 20px;
  }
  .kgw-hero__visual {
    height: 470px;
    margin: 0;
    border-radius: 75px 18px 18px 18px;
    box-shadow: 14px 14px 0 #eee9df, 0 18px 45px rgba(37, 37, 34, 0.14);
  }
  .kgw-about__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .kgw-photo-grid {
    max-width: 720px;
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 575.98px) {
  .kgw-page {
    font-size: 15px;
  }
  .kgw-shell {
    width: calc(100% - 30px);
  }
  .kgw-hero {
    padding-top: 12px;
  }
  .kgw-hero:before {
    display: none;
  }
  .kgw-hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
    line-height: 1.06;
  }
  .kgw-lead {
    font-size: 0.96rem;
  }
  .kgw-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .kgw-button {
    width: 100%;
    padding-inline: 15px;
  }
  .kgw-hero__visual {
    height: 350px;
    border-width: 6px;
    border-radius: 54px 14px 14px 14px;
    box-shadow: 9px 10px 0 #eee9df, 0 14px 35px rgba(37, 37, 34, 0.13);
  }
  .kgw-hero__visual img {
    object-position: center 8%;
  }
  .kgw-facts {
    margin-top: 28px;
  }
  .kgw-section {
    padding: 58px 0;
  }
  .kgw-section-head {
    margin-bottom: 30px;
  }
  .kgw-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }
  .kgw-photo-grid {
    grid-template-rows: 235px 125px;
    gap: 10px;
  }
  .kgw-photo--large {
    min-height: 0;
  }
  .kgw-photo {
    border-radius: 14px;
  }
  .kgw-card {
    border-radius: 20px;
  }
  .kgw-card__image {
    height: 205px;
  }
  .kgw-gallery {
    gap: 9px;
    grid-template-rows: 220px 125px 125px;
  }
  .kgw-gallery__item {
    border-radius: 12px;
  }
  .kgw-page #kgw-main > section:before {
    width: 110px !important;
    height: 110px !important;
    background-size: 360px 240px !important;
    opacity: 0.09 !important;
  }
  .kgw-reveal {
    transform: translateY(15px);
  }
}
.kgw-section {
  scroll-margin-top: 110px;
}

.osp-chronicle {
  background: #f6f1e7;
  color: #272622;
  overflow: clip;
  font-family: Georgia, "Times New Roman", serif;
}

.osp-chronicle .container {
  max-width: 1180px;
}

.osp-chronicle h1, .osp-chronicle h2, .osp-chronicle h3, .osp-chronicle p {
  text-wrap: pretty;
}

.osp-chronicle a:focus-visible, .osp-chronicle button:focus-visible {
  outline: 3px solid #ad7a27;
  outline-offset: 4px;
}

.osp-chronicle-overline {
  margin: 0 0 1rem;
  color: #b51f2e;
  font: 700 0.73rem/1.3 Arial, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.osp-chronicle-section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.osp-chronicle-section-head h2, .osp-chronicle-intro h2, .osp-chronicle-cta h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.osp-chronicle-section-head > p:last-child {
  max-width: 650px;
  color: #686157;
  font-size: 1.08rem;
  line-height: 1.75;
}

.osp-chronicle-hero {
  position: relative;
  padding: clamp(2.4rem, 7vw, 6.5rem) 0 clamp(4rem, 9vw, 8rem);
  background: #ede5d6;
  border-bottom: 1px solid rgba(54, 48, 39, 0.2);
}

.osp-chronicle-hero::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -5rem;
  width: 22rem;
  aspect-ratio: 1;
  opacity: 0.08;
  background: radial-gradient(circle at 50% 50%, #b51f2e 0 3%, transparent 3.5%), radial-gradient(ellipse at 35% 35%, #b51f2e 0 8%, transparent 8.5%);
  transform: rotate(18deg);
  pointer-events: none;
}

.osp-chronicle-breadcrumb {
  display: flex;
  gap: 0.65rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  color: #686157;
  font: 0.78rem/1.4 Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.osp-chronicle-breadcrumb a {
  color: inherit;
}

.osp-chronicle-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.osp-chronicle-hero h1 {
  max-width: 820px;
  margin: 0 0 1.6rem;
  font-size: clamp(2.75rem, 6.7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.osp-chronicle-hero__lead {
  max-width: 670px;
  margin-bottom: 2rem;
  color: #4f4a42;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.7;
}

.osp-chronicle-text-link {
  display: inline-flex;
  gap: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  color: #b51f2e;
  font: 700 0.9rem/1.4 Arial, sans-serif;
  text-decoration: none;
}

.osp-chronicle-hero__year {
  padding: 1.4rem 0 0 1.5rem;
  border-left: 1px solid #ad7a27;
}

.osp-chronicle-hero__year strong {
  display: block;
  color: #b51f2e;
  font-size: clamp(3.5rem, 8vw, 7.3rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.osp-chronicle-hero__year span {
  display: block;
  max-width: 230px;
  margin-top: 1.4rem;
  color: #686157;
  font: 0.82rem/1.6 Arial, sans-serif;
}

.osp-chronicle-intro, .osp-chronicle-founders, .osp-chronicle-timeline, .osp-chronicle-archive, .osp-chronicle-sources {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}

.osp-chronicle-reading {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
  max-width: 980px !important;
}

.osp-chronicle-side-note {
  color: #686157;
  font: italic 0.9rem/1.65 Georgia, serif;
  border-top: 2px solid #ad7a27;
  padding-top: 1rem;
}

.osp-chronicle-intro h2 {
  max-width: 760px;
}

.osp-chronicle-intro p:not(.osp-chronicle-overline):not(.osp-chronicle-side-note) {
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.85;
}

.osp-chronicle-dropcap::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: #b51f2e;
  font-size: 4.6rem;
  line-height: 0.7;
}

.osp-chronicle-founders {
  background: #fffdf8;
  border-block: 1px solid rgba(54, 48, 39, 0.2);
  scroll-margin-top: 120px;
}

.osp-chronicle-photo {
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.osp-chronicle-photo__open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.osp-chronicle-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: sepia(0.06) contrast(1.03);
}

.osp-chronicle-photo__open > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.85rem;
  background: rgba(30, 28, 25, 0.9);
  color: #fff;
  font: 700 0.75rem/1 Arial, sans-serif;
}

.osp-chronicle-photo figcaption {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(54, 48, 39, 0.2);
  color: #686157;
  font-size: 0.9rem;
  line-height: 1.6;
}

.osp-founder-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(54, 48, 39, 0.2);
}

.osp-founder-ledger li {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  align-content: start;
  min-height: 6.5rem;
  padding: 1.15rem 0.9rem;
  border-right: 1px solid rgba(54, 48, 39, 0.2);
  border-bottom: 1px solid rgba(54, 48, 39, 0.2);
}

.osp-founder-ledger li:nth-child(3n) {
  border-right: 0;
}

.osp-founder-ledger li > span {
  grid-row: 1/span 2;
  color: #ad7a27;
  font-size: 1.25rem;
}

.osp-founder-ledger strong {
  font-size: 1.02rem;
  font-weight: 400;
}

.osp-founder-ledger a {
  margin-top: 0.5rem;
  color: #b51f2e;
  font: 700 0.75rem/1.4 Arial, sans-serif;
}

.osp-founder-ledger .is-unidentified {
  background: rgba(173, 122, 39, 0.07);
}

.osp-chronicle-numbers {
  padding: 2.8rem 0;
  background: #272622;
  color: #fff;
}

.osp-chronicle-numbers dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.osp-chronicle-numbers dl > div {
  padding: 0.5rem clamp(1rem, 4vw, 3.5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.osp-chronicle-numbers dl > div:last-child {
  border: 0;
}

.osp-chronicle-numbers dt {
  color: #d5a34f;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
}

.osp-chronicle-numbers dd {
  max-width: 230px;
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font: 0.82rem/1.5 Arial, sans-serif;
}

.osp-chronicle-timeline__list {
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.osp-chronicle-timeline__list > li {
  position: relative;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: 210px;
  padding-bottom: 3.6rem;
}

.osp-chronicle-timeline__list > li::before {
  content: "";
  position: absolute;
  left: 245px;
  top: 0.65rem;
  bottom: -0.65rem;
  width: 1px;
  background: rgba(54, 48, 39, 0.2);
}

.osp-chronicle-timeline__list > li::after {
  content: "";
  position: absolute;
  left: 239px;
  top: 0.42rem;
  width: 13px;
  height: 13px;
  border: 2px solid #ad7a27;
  border-radius: 50%;
  background: #f6f1e7;
}

.osp-chronicle-event__date {
  text-align: right;
}

.osp-chronicle-event__date time {
  display: block;
  color: #ad7a27;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
}

.osp-chronicle-event__date span {
  display: block;
  margin-top: 0.7rem;
  color: #686157;
  font: 700 0.68rem/1.5 Arial, sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.osp-chronicle-timeline article {
  padding-left: 1rem;
}

.osp-chronicle-timeline article h3 {
  margin: 0.6rem 0 0.8rem;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 400;
}

.osp-chronicle-timeline article > p:not(.osp-chronicle-citations) {
  max-width: 610px;
  color: #4e4a43;
  font-size: 1.05rem;
  line-height: 1.75;
}

.osp-chronicle-event__meta span {
  color: #b51f2e;
  font: 700 0.68rem/1 Arial, sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.osp-chronicle-citations a {
  margin-right: 0.4rem;
  color: #ad7a27;
  font: 700 0.72rem/1 Arial, sans-serif;
}

.osp-chronicle-archive {
  background: #e9e0d1;
}

.osp-archive-record {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 900px;
  padding-block: 2rem;
  border-block: 1px solid rgba(54, 48, 39, 0.2);
}

.osp-archive-record img {
  width: 100%;
  height: auto;
}

.osp-archive-record h3 {
  margin: 0 0 0.7rem;
  font-size: 2rem;
  font-weight: 400;
}

.osp-archive-record dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-top: 1.5rem;
}

.osp-archive-record dt {
  color: #b51f2e;
  font: 700 0.68rem/1 Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.osp-archive-record dd {
  margin: 0.35rem 0 0;
  color: #686157;
  line-height: 1.5;
}

.osp-source-register {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(54, 48, 39, 0.2);
}

.osp-source-register article {
  min-height: 10rem;
  padding: 1.4rem;
  border-right: 1px solid rgba(54, 48, 39, 0.2);
  border-bottom: 1px solid rgba(54, 48, 39, 0.2);
  scroll-margin-top: 130px;
}

.osp-source-register article:nth-child(2n) {
  border-right: 0;
}

.osp-source-register article > span {
  color: #ad7a27;
  font: 700 0.67rem/1 Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.osp-source-register h3 {
  margin: 0.8rem 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.osp-source-register a {
  color: #b51f2e;
  font: 700 0.78rem/1.4 Arial, sans-serif;
}

.osp-source-register p {
  color: #686157;
  font-size: 0.86rem;
}

.osp-rights-note {
  max-width: 850px;
  margin: 2.5rem 0 0;
  padding-left: 1.2rem;
  border-left: 3px solid #ad7a27;
  color: #686157;
  line-height: 1.7;
}

.osp-chronicle-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #292825;
  color: #fff;
  text-align: center;
}

.osp-chronicle-cta .container {
  max-width: 760px;
}

.osp-chronicle-cta > .container > p:not(.osp-chronicle-overline) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.7;
}

.osp-chronicle-cta .osp-btn {
  margin-top: 1rem;
  background: #b51f2e;
  color: #fff;
  border-color: #b51f2e;
}

.osp-archive-modal .modal-content {
  border: 0;
  border-radius: 0;
  background: #f6f1e7;
}

.osp-archive-modal .modal-header {
  border-color: rgba(54, 48, 39, 0.2);
}

.osp-archive-modal .modal-body img {
  display: block;
  width: 100%;
  height: auto;
}

.osp-archive-modal .modal-body p {
  margin: 1rem 0 0;
  color: #686157;
}

@media (max-width: 767.98px) {
  .osp-chronicle-hero {
    padding-top: 1.5rem;
  }
  .osp-chronicle-breadcrumb {
    margin-bottom: 2.5rem;
    overflow: hidden;
    white-space: nowrap;
  }
  .osp-chronicle-hero__grid, .osp-chronicle-reading {
    grid-template-columns: 1fr;
  }
  .osp-chronicle-hero__grid {
    gap: 3rem;
  }
  .osp-chronicle-hero__year {
    max-width: 290px;
  }
  .osp-chronicle-side-note {
    order: 2;
    margin-top: 1rem;
  }
  .osp-founder-ledger {
    grid-template-columns: 1fr;
  }
  .osp-founder-ledger li, .osp-founder-ledger li:nth-child(3n) {
    border-right: 0;
    min-height: 5rem;
  }
  .osp-chronicle-photo__open > span {
    position: static;
    display: block;
    text-align: left;
  }
  .osp-chronicle-numbers dl {
    grid-template-columns: 1fr;
  }
  .osp-chronicle-numbers dl > div {
    padding: 1.2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .osp-chronicle-timeline__list > li {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0 3.5rem 1.6rem;
  }
  .osp-chronicle-timeline__list > li::before {
    left: 4px;
    top: 0.5rem;
    bottom: 0;
  }
  .osp-chronicle-timeline__list > li::after {
    left: -2px;
    top: 0.35rem;
  }
  .osp-chronicle-event__date {
    text-align: left;
  }
  .osp-chronicle-event__date span {
    max-width: 260px;
  }
  .osp-chronicle-timeline article {
    padding: 0;
  }
  .osp-archive-record, .osp-archive-record dl, .osp-source-register {
    grid-template-columns: 1fr;
  }
  .osp-archive-record img {
    max-width: 280px;
  }
  .osp-source-register article, .osp-source-register article:nth-child(2n) {
    border-right: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .osp-chronicle *, .osp-archive-modal * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
.osp-home {
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.7;
  --osp-home-muted: #56616c;
}
.osp-home h1, .osp-home h2, .osp-home h3 {
  font-family: inherit;
  text-transform: none;
  letter-spacing: -0.035em;
}
.osp-home h2 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.2;
  font-weight: 800;
}
.osp-home h3 {
  line-height: 1.35;
  font-weight: 800;
}
.osp-home .osp-section {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}
.osp-home .osp-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  line-height: 1.6;
  font-weight: 800;
}
.osp-home .osp-section-heading {
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.osp-home .osp-section-heading h2 {
  max-width: 24ch;
  margin-bottom: 0;
}
.osp-home .osp-section-heading > .osp-btn {
  flex-shrink: 0;
}
.osp-home .osp-btn {
  border-radius: 6px;
  padding: 0.95rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}
.osp-home a:focus-visible {
  outline: 3px solid #df9b20;
  outline-offset: 5px;
}
.osp-home .osp-home-hero {
  min-height: 0;
}
.osp-home .min-vh-hero {
  min-height: 650px;
  padding-block: 5rem;
  row-gap: 2rem;
}
.osp-home .osp-home-hero__content h1 {
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 1.1;
  max-width: 17ch;
  font-weight: 800;
}
.osp-home .osp-home-hero__content h1 > span {
  display: block;
  font-size: 0.65em;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-top: 0.65em;
}
.osp-home .osp-home-hero__content p {
  max-width: 57ch;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.8;
}
.osp-home .osp-home-hero__bg {
  animation: none;
  transform: none;
}
.osp-home .osp-home-hero__bg--two, .osp-home .osp-home-hero__bg--three {
  display: none;
}
.osp-home .osp-hero-alarm {
  border-radius: 8px;
  box-shadow: none;
  transform: none;
}
.osp-home .osp-hero-alarm a, .osp-home .weather-widget__alarm a {
  color: inherit;
  text-decoration: none;
}
.osp-home .osp-home-feature {
  padding: 1.7rem 1.25rem;
  min-height: 0;
}
.osp-home .osp-home-feature strong {
  text-transform: none;
  font-size: 1.08rem;
}
.osp-home .osp-home-feature span {
  font-size: 0.86rem;
}
.osp-home .osp-home-blog {
  background: #f5f6f7;
}
.osp-home .osp-blog-card {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 24px rgba(24, 34, 44, 0.055);
}
.osp-home .osp-blog-card h3 {
  font-size: 1.25rem;
  margin-block: 0.8rem 1.2rem;
}
.osp-home .osp-blog-card h3 a {
  color: inherit;
  text-decoration: none;
}
.osp-home .osp-blog-card h3 a:hover {
  color: var(--osp-red);
}
.osp-home .osp-blog-card__image {
  aspect-ratio: 16/10;
}
.osp-home .osp-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.osp-home .osp-home-about__media {
  min-height: 0;
  padding: 0 1.5rem 2rem 0;
}
.osp-home .osp-home-about__main {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  max-height: 580px;
  object-fit: cover;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
}
.osp-home .osp-home-about__small, .osp-home .osp-home-about__mini, .osp-home .osp-home-about__gas, .osp-home .osp-home-about__shape {
  display: none;
}
.osp-home .osp-home-about__badge {
  left: auto;
  right: 0;
  bottom: 0;
  border-radius: 8px;
}
.osp-home .osp-home-about__content h2, .osp-home .osp-home-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.2;
  text-transform: none;
}
.osp-home .osp-home-about__features strong {
  text-transform: none;
  font-weight: 800;
}
.osp-home .osp-home-about__list-wrap {
  display: block;
}
.osp-home .osp-home-about__list-wrap > img {
  display: none;
}
.osp-home .osp-home-funfact strong {
  font-size: clamp(1.65rem, 3vw, 2.75rem);
}
.osp-home .osp-home-service-card {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.osp-home .osp-home-service-card h3 {
  font-size: 1.3rem;
  text-transform: none;
}
.osp-home .osp-home-service-card p {
  line-height: 1.75;
}
.osp-home .osp-home-gallery__item {
  border-radius: 8px;
}
.osp-home .osp-home-brands__track {
  animation: none;
  width: 100%;
}
.osp-home .osp-home-brands__set {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 1.5rem 2rem;
}
.osp-home .osp-home-brands__set[aria-hidden=true], .osp-home .osp-home-brands__marquee::before, .osp-home .osp-home-brands__marquee::after {
  display: none;
}
.osp-home [data-osp-fixed-bg] {
  background-attachment: scroll;
}

.osp-reveal {
  opacity: 1;
  transform: none;
}

.osp-reveal.osp-reveal--pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.65, 0.3, 1);
  transition-delay: 0s;
}

.osp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.osp-mode-night .osp-home .osp-home-blog {
  background: #151c23;
}

@media (max-width: 991px) {
  .osp-home .min-vh-hero {
    min-height: 0;
    padding-block: 3.5rem;
  }
  .osp-home .osp-hero-alarm {
    max-width: none;
    margin: 0;
    padding: 1.25rem 1.5rem;
  }
  .osp-home .osp-hero-alarm strong {
    font-size: 2.5rem;
  }
  .osp-home .osp-hero-alarm p {
    margin-bottom: 0;
    max-width: 55ch;
  }
}
@media (max-width: 575px) {
  .osp-home .osp-home-features .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .osp-home .osp-home-features .row > * {
    width: auto;
  }
  .osp-home .osp-home-feature {
    height: 100%;
    padding: 1.25rem 0.85rem;
  }
  .osp-home .osp-section-heading {
    align-items: start;
  }
  .osp-home .osp-home-about__features {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .osp-reveal.osp-reveal--pending {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.osp-brand .osp-brand__text {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
  text-shadow: none;
}

.osp-footer .osp-brand__text,
body.osp-mode-night .osp-footer .osp-brand__text {
  color: #f6f8fa;
}

.osp-footer__brand {
  text-decoration: none;
}

.osp-footer__brand:hover .osp-brand__text {
  color: #fff;
}

.osp-home .osp-supporters {
  background: #f1f3f5;
  color: #17232e;
  padding-block: 3.5rem;
}

.osp-supporters__heading {
  text-align: center;
  margin-bottom: 2rem;
}

.osp-supporters__heading h2 {
  color: #17232e;
  margin: 0.5rem 0 0;
}

.osp-supporters__heading .osp-kicker {
  color: #a61820;
}

.osp-supporters__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.osp-supporter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.6rem 1rem;
  background: #fff;
  color: #243342;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 700;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.osp-supporter img {
  width: 100%;
  max-width: 180px;
  height: 92px;
  object-fit: contain;
}
.osp-supporter:hover {
  color: #a61820;
}

.osp-atlas {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #1b2a38;
  background: #eef2f5;
  --atlas-height: max(520px, calc(100dvh - 230px));
}
.osp-atlas__toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 0 2rem;
  padding: 0.75rem 1.5rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.osp-atlas__heading h1 {
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-transform: none;
  margin: 0.65rem 0;
  color: #20252a;
}
.osp-atlas__heading h1 > span {
  color: #c71e2b;
}
.osp-atlas__heading p {
  color: #586778;
  font-size: 0.88rem;
  margin: 0;
}
.osp-atlas__heading .osp-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.osp-atlas__search {
  align-self: center;
}
.osp-atlas__search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.osp-atlas__search > div {
  display: flex;
  border: 0;
  border-bottom: 1px solid #aaa;
  background: #fff;
  border-radius: 0;
  padding: 0;
}
.osp-atlas__search input {
  background: transparent;
  border: 0;
  min-width: 0;
  flex: 1;
  padding: 0.6rem;
  font: inherit;
  font-size: 0.85rem;
}
.osp-atlas__search button {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0.5rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #555;
  text-decoration: underline;
}
.osp-atlas .osp-map-filters {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0 1.5rem;
}
.osp-atlas .osp-map-filters button {
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0.6rem 0;
  min-height: 44px;
  background: transparent;
  color: #555;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: none;
}
.osp-atlas .osp-map-filters button span {
  margin-left: 0.35rem;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}
.osp-atlas .osp-map-filters button.is-active {
  background: transparent;
  color: var(--osp-red);
  border-bottom-color: var(--osp-red);
}
.osp-atlas .osp-map-filters button:hover {
  color: var(--osp-red);
}
.osp-atlas__workspace {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  height: var(--atlas-height);
}
.osp-atlas__canvas {
  position: relative;
  min-width: 0;
  min-height: 0;
}
.osp-atlas .osp-map-canvas {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  z-index: 0;
}
.osp-atlas .osp-map-list {
  position: static;
  display: flex;
  flex-direction: column;
  background: #fff;
  min-height: 0;
  max-height: none;
  width: auto;
  border: 0;
  border-right: 1px solid #dce3e9;
  border-radius: 0;
  box-shadow: none;
}
.osp-atlas .osp-map-list__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.85rem 1.2rem;
  background: #fff;
  color: #252525;
  border-bottom: 1px solid #eee;
}
.osp-atlas .osp-map-list__head strong {
  font-size: 1.15rem;
  color: inherit;
}
.osp-atlas .osp-map-list__head span {
  font-size: 0.78rem;
  color: #576a7a;
}
.osp-atlas .osp-map-list__head a {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: #37536c;
}
.osp-atlas .osp-map-list__items {
  overflow-y: auto;
  max-height: none;
  padding: 0;
  flex: 1;
  min-height: 0;
}
.osp-atlas .osp-map-list__item {
  border: 0;
  border-bottom: 1px solid #eee;
  border-radius: 0;
  margin: 0;
  padding: 0.9rem 1.2rem;
  background: #fff;
  box-shadow: none;
}
.osp-atlas .osp-map-list__item:hover, .osp-atlas .osp-map-list__item:focus-visible {
  background: #f5f5f5;
  box-shadow: none;
  transform: none;
}
.osp-atlas .osp-map-list__item em {
  color: #777;
  font-size: 0.6rem;
  letter-spacing: 0.035em;
}
.osp-atlas .osp-map-list__item strong {
  color: #203346;
  font-size: 0.86rem;
  line-height: 1.4;
}
.osp-atlas .osp-map-list__item span {
  color: #627180;
  font-size: 0.76rem;
}
.osp-atlas__legend {
  position: absolute;
  z-index: 450;
  right: 1rem;
  top: 1rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.6rem 0.8rem;
  border: 0;
  border-radius: 0;
  font-size: 0.72rem;
  box-shadow: none;
}
.osp-atlas summary {
  cursor: pointer;
  font-weight: 800;
}
.osp-atlas__legend ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}
.osp-atlas__legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.osp-atlas__legend i {
  width: 20px;
  border-top: 3px solid #5f7388;
}
.osp-atlas__legend .is-powiat {
  border-color: #8c1515;
}
.osp-atlas__legend .is-prusice {
  border-color: #c72f2f;
}
.osp-atlas__directory {
  background: #fff;
  padding: 1.1rem clamp(1rem, 3vw, 3rem);
  border-top: 1px solid #dce3e9;
  scroll-margin-top: 120px;
}
.osp-atlas__directory summary {
  font-size: 0.9rem;
}
.osp-atlas__directory summary span {
  font-weight: 400;
  color: #687b8b;
  margin-left: 0.6rem;
  font-size: 0.78rem;
}
.osp-atlas__directory .osp-places-directory__grid {
  padding-top: 1.5rem;
}
.osp-atlas__directory [hidden] {
  display: none;
}
.osp-atlas a:focus-visible, .osp-atlas button:focus-visible, .osp-atlas input:focus-visible, .osp-atlas summary:focus-visible {
  outline: 3px solid #dba129;
  outline-offset: 3px;
}

.osp-atlas-empty {
  padding: 1.5rem;
  color: #586778;
  font-size: 0.85rem;
}

.osp-atlas .osp-map-canvas .osp-boundary {
  filter: none;
}

.osp-atlas .osp-places-directory__grid a,
.osp-place-related .osp-place-related__grid a {
  border: 0;
  border-bottom: 1px solid #eee;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.osp-atlas .osp-map-list__verification {
  margin-top: 0.4rem;
  color: #565656;
  font-size: 0.68rem;
}

.osp-place-detail.osp-page-head {
  padding-block: 1.5rem;
  background: #fff;
  color: #20252a;
}

.osp-place-detail.osp-page-head::before {
  display: none;
}

.osp-place-detail .osp-kicker, .osp-place-detail .osp-place-breadcrumb a {
  color: var(--osp-red);
}

.osp-place-detail .osp-place-breadcrumb, .osp-place-detail .osp-place-detail__heading p {
  color: #606060;
}

.osp-place-detail .osp-place-detail__heading h1 {
  color: #20252a;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  text-transform: none;
}

.osp-place-content {
  background: #fff;
  padding-block: 1.5rem 3rem;
}

.osp-place-content .osp-place-card, .osp-place-content .osp-place-map-card {
  padding: 0;
  box-shadow: none;
  border: 0;
}

.osp-place-content .osp-place-card h3 {
  margin: 1.6rem 0 0.7rem;
  font-size: 1.1rem;
}

.osp-place-content .osp-place-audit-date {
  font-size: 0.8rem;
}

.osp-place-sources {
  padding-left: 1.2rem;
}

.osp-place-sources li {
  margin-bottom: 0.85rem;
}

.osp-place-sources a {
  color: var(--osp-red);
  overflow-wrap: anywhere;
}

.osp-place-sources small {
  display: block;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .osp-atlas__toolbar {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.6rem 1rem 0;
  }
  .osp-atlas__workspace {
    height: auto;
    grid-template-columns: 1fr;
  }
  .osp-atlas__canvas {
    grid-row: 1;
    height: 62dvh;
    min-height: 380px;
  }
  .osp-atlas .osp-map-list {
    max-height: 300px;
    border-right: 0;
  }
  .osp-atlas__directory summary span {
    display: block;
    margin: 0.4rem 0 0;
  }
  .osp-atlas .osp-map-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.1rem;
  }
  .osp-atlas .osp-map-filters button {
    padding: 0.55rem 0;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .osp-atlas__legend {
    top: 0.75rem;
    right: 0.75rem;
  }
}
.osp-giving {
  color: #20262b;
  background: #fff;
  font-family: "Manrope", "Segoe UI", sans-serif;
}
.osp-giving h1, .osp-giving h2, .osp-giving h3 {
  color: inherit;
  font-family: inherit;
  text-transform: none;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.osp-giving h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.16;
  margin: 0 0 1.2rem;
}
.osp-giving h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}
.osp-giving p {
  line-height: 1.8;
  color: #596168;
}
.osp-giving a {
  text-underline-offset: 0.25em;
}
.osp-giving section[id] {
  scroll-margin-top: 120px;
}
.osp-giving .osp-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}
.osp-giving .osp-btn {
  background: var(--osp-red);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 1rem 1.35rem;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  text-decoration: none;
  min-height: 48px;
}
.osp-giving .osp-btn:hover {
  background: #a8171e;
}
.osp-giving__intro {
  padding: clamp(2rem, 5vw, 4.5rem) 0 2.7rem;
}
.osp-giving__intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.osp-giving__lead h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.04;
  margin: 0.8rem 0 1.5rem;
  letter-spacing: -0.05em;
}
.osp-giving__lead p {
  max-width: 34rem;
  font-size: 1.04rem;
  margin-bottom: 1.7rem;
}
.osp-giving__text-link {
  display: block;
  width: fit-content;
  color: #3e454b;
  font-size: 0.82rem;
  margin-top: 1.2rem;
}
.osp-giving__photo {
  margin: 0;
}
.osp-giving__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.15;
  object-fit: cover;
  object-position: 60% center;
}
.osp-giving__photo figcaption {
  font-size: 0.7rem;
  color: #777;
  padding-top: 0.7rem;
}
.osp-giving__nav {
  border-block: 1px solid #e7e7e7;
}
.osp-giving__nav > div {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
}
.osp-giving__nav a {
  white-space: nowrap;
  display: block;
  padding: 1.1rem 0;
  color: #333;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}
.osp-giving__nav a:hover {
  color: var(--osp-red);
}
.osp-giving__section {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}
.osp-giving__heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2rem;
}
.osp-giving__heading p {
  max-width: 35rem;
  margin: 0 0 1rem;
}
.osp-giving__needs {
  border-top: 1px solid #dadada;
}
.osp-giving__need {
  display: grid;
  grid-template-columns: 90px 1fr 140px;
  align-items: baseline;
  gap: 1.6rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.osp-giving__need h3 {
  margin: 0 0 0.5rem;
}
.osp-giving__need p {
  font-size: 0.9rem;
  max-width: 46rem;
  margin: 0;
}
.osp-giving__need > a {
  color: var(--osp-red);
  font-size: 0.86rem;
  font-weight: 800;
  padding-block: 0.5rem;
}
.osp-giving__priority {
  color: #676767;
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.osp-giving__priority.is-urgent {
  color: var(--osp-red);
}
.osp-giving__ways, .osp-giving__questions {
  background: #f5f5f3;
}
.osp-giving__impact-note {
  margin: 2rem 0 0;
  max-width: 65rem;
  font-size: 0.9rem;
}
.osp-giving__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.osp-giving__columns article {
  display: flex;
  flex-direction: column;
}
.osp-giving__columns a {
  margin-top: auto;
  color: var(--osp-red);
  font-weight: 700;
  font-size: 0.85rem;
}
.osp-giving__columns p {
  font-size: 0.93rem;
}
.osp-giving__business {
  background: #172026;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
}
.osp-giving__business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.osp-giving__business p {
  color: #d2d5d7;
}
.osp-giving__business .osp-kicker {
  color: #e0b65e;
}
.osp-giving__contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
}
.osp-giving__contact-copy h3 {
  margin-top: 2rem;
}
.osp-giving__contact-copy ol {
  padding-left: 1.15rem;
  color: #596168;
  font-size: 0.9rem;
}
.osp-giving__contact-copy li {
  padding: 0.4rem 0 0.4rem 0.3rem;
}
.osp-giving__contact-copy a, .osp-giving__questions a {
  color: var(--osp-red);
}
.osp-giving .osp-support-form {
  padding: 0;
  box-shadow: none;
  background: transparent;
}
.osp-giving .osp-support-form label {
  font-size: 0.8rem;
}
.osp-giving .osp-support-form input, .osp-giving .osp-support-form select, .osp-giving .osp-support-form textarea {
  border-radius: 0;
  padding: 0.85rem;
  font-size: 0.95rem;
  min-height: 46px;
}
.osp-giving .osp-support-form__captcha {
  border: 0;
  padding: 0.8rem 0;
  background: transparent;
}
.osp-giving .osp-support-form__selection {
  padding: 0.7rem 0;
  border: 0;
  background: transparent;
  font-size: 0.9rem;
}
.osp-giving .osp-support-form__privacy {
  font-size: 0.75rem;
}
.osp-giving details {
  border-bottom: 1px solid #dcdcdc;
  padding: 1.1rem 0;
}
.osp-giving details:first-child {
  padding-top: 0;
}
.osp-giving summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}
.osp-giving details p {
  margin: 1rem 0 0.3rem;
  font-size: 0.9rem;
}
.osp-giving a:focus-visible, .osp-giving summary:focus-visible, .osp-giving input:focus-visible, .osp-giving textarea:focus-visible, .osp-giving select:focus-visible, .osp-giving button:focus-visible {
  outline: 2px solid var(--osp-red);
  outline-offset: 4px;
}
@media (max-width: 991px) {
  .osp-giving__intro-grid {
    gap: 2rem;
  }
  .osp-giving__heading, .osp-giving__contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .osp-giving__contact-copy {
    max-width: 40rem;
  }
  .osp-giving__columns {
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .osp-giving__intro-grid, .osp-giving__columns, .osp-giving__business-grid {
    grid-template-columns: 1fr;
  }
  .osp-giving__photo img {
    aspect-ratio: 16/10;
  }
  .osp-giving__intro {
    padding-top: 2rem;
  }
  .osp-giving__nav > div {
    gap: 1.5rem;
  }
  .osp-giving__need {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .osp-giving__need > a {
    width: fit-content;
  }
  .osp-giving__columns {
    gap: 2rem;
  }
  .osp-giving__business-grid {
    gap: 0.5rem;
  }
}

.osp-section-nav {
  position: sticky;
  top: var(--navigator-top, 80px);
  z-index: 60;
  background: #fff;
  color: #263039;
  border-bottom: 1px solid #e5e5e5;
  font-family: "Manrope", "Segoe UI", sans-serif;
  scroll-margin-top: 110px;
}
.osp-section-nav__bar {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}
.osp-section-nav__label {
  color: #7a8084;
  font-size: 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.osp-section-nav__links {
  display: flex;
  align-items: stretch;
  gap: 25px;
  overflow-x: auto;
  min-width: 0;
  scrollbar-width: thin;
}
.osp-section-nav__links a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 0;
  color: #42494f;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.osp-section-nav__links a:hover, .osp-section-nav__links a[aria-current=location] {
  color: var(--osp-red);
  border-bottom-color: var(--osp-red);
}
@media (max-width: 767px) {
  .osp-section-nav__label {
    display: none;
  }
  .osp-section-nav__links {
    gap: 22px;
  }
  .osp-section-nav__links a {
    min-height: 48px;
    font-size: 0.75rem;
  }
}
.osp-section-nav a:focus-visible, .osp-section-nav summary:focus-visible {
  outline: 2px solid var(--osp-red);
  outline-offset: 3px;
}

.osp-editorial {
  --paper: #fff;
  --paper-dark: #f4f4f2;
  --cream: #fff;
  --ink: #20262b;
  --deep: #192228;
  --muted: #61666a;
  --line: #e5e5e5;
  --gold: #9b6718;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: #fff;
  color: #20262b;
}
.osp-editorial h1, .osp-editorial h2, .osp-editorial h3 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.035em;
}
.osp-editorial h1 {
  font-size: clamp(2.25rem, 4.4vw, 3.8rem);
  line-height: 1.1;
}
.osp-editorial h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.2;
}
.osp-editorial h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.35;
}
.osp-editorial p {
  line-height: 1.8;
}
.osp-editorial [id] {
  scroll-margin-top: var(--osp-reading-offset, 190px);
}
.osp-editorial .osp-btn, .osp-editorial .kgw-button {
  border-radius: 0;
  box-shadow: none;
  font-family: inherit;
  text-transform: none;
  font-size: 0.85rem;
}
.osp-editorial .osp-section, .osp-editorial .kgw-section {
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
}
.osp-editorial .osp-service-card, .osp-editorial .osp-about-callout, .osp-editorial .osp-contact-card, .osp-editorial .osp-contact-note, .osp-editorial .osp-recruit-hero__card,
.osp-editorial .kgw-card, .osp-editorial .kgw-news, .osp-editorial .kgw-facts, .osp-editorial .kgw-board article, .osp-editorial .kgw-collab__items article {
  border-radius: 0;
  box-shadow: none;
  border: 0;
}
.osp-editorial .osp-service-card {
  background: transparent;
  padding: 0.5rem 0;
}
.osp-editorial .osp-service-card:hover, .osp-editorial .kgw-card:hover {
  transform: none;
  box-shadow: none;
}
.osp-editorial .osp-about-callout {
  background: transparent;
  padding: 1rem 0;
  border-top: 1px solid #ddd;
}
.osp-editorial .osp-about-checkgrid {
  gap: 0.5rem;
}
.osp-editorial .osp-about-checkgrid span {
  border: 0;
  background: transparent;
  padding: 0.3rem 0;
}
.osp-editorial .osp-recruit-hero, .osp-editorial .osp-contact-hero {
  min-height: 0;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: #fff;
  color: #20262b;
}
.osp-editorial .osp-recruit-hero::before, .osp-editorial .osp-contact-hero::before {
  display: none;
}
.osp-editorial .osp-recruit-hero h1, .osp-editorial .osp-contact-hero h1 {
  color: #20262b;
  font-size: clamp(2.25rem, 4.4vw, 3.8rem);
  line-height: 1.1;
}
.osp-editorial .osp-recruit-hero .osp-kicker, .osp-editorial .osp-contact-hero .osp-kicker {
  color: var(--osp-red);
}
.osp-editorial .osp-recruit-hero__lead, .osp-editorial .osp-recruit-hero__note, .osp-editorial .osp-contact-hero p {
  color: #5b6268;
  font-size: 1rem;
}
.osp-editorial .osp-recruit-hero__card {
  background: #f4f4f2;
  max-width: none;
  padding: 2rem;
}
.osp-editorial .osp-recruit-hero__card h2 {
  font-size: 1.4rem;
}
.osp-editorial .osp-recruit-hero .osp-btn--light, .osp-editorial .osp-contact-actions .osp-btn--outline {
  background: transparent;
  color: var(--osp-red);
  border: 0;
  text-decoration: underline;
}
.osp-editorial .osp-recruit-timeline > li {
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}
.osp-editorial .osp-recruit-timeline > li > span {
  border-radius: 0;
  background: transparent;
  color: var(--osp-red);
}
.osp-editorial .osp-recruit-fixed {
  padding-block: 3rem;
  background: #192228;
}
.osp-editorial .osp-recruit-fixed h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}
.osp-editorial .osp-recruit-panel {
  padding: 2rem;
}
.osp-editorial .osp-recruit-panel h2 {
  font-size: 1.6rem;
}
.osp-editorial .osp-recruit-summary h2, .osp-editorial .osp-recruit-path h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}
.osp-editorial .osp-contact-hero__alarm {
  background: transparent;
  padding: 1rem 0 1rem 1.5rem;
  border: 0;
  border-left: 2px solid var(--osp-red);
  box-shadow: none;
}
.osp-editorial .osp-contact-hero__alarm strong {
  color: var(--osp-red);
  font-size: 3.4rem;
}
.osp-editorial .osp-contact-hero__alarm a {
  text-decoration: none;
}
.osp-editorial .osp-contact-card {
  padding: 0;
  background: #fff;
  color: #20262b;
}
.osp-editorial .osp-contact-card h2 {
  color: #20262b;
  font-size: 1.55rem;
}
.osp-editorial .osp-contact-card--primary {
  padding-right: 2rem;
}
.osp-editorial .osp-contact-card--dark {
  padding-top: 1.75rem;
  border-top: 1px solid #ddd;
}
.osp-editorial .osp-contact-card--dark :is(dt, dd, p, span) {
  color: #535d65;
}
.osp-editorial .osp-contact-registry div {
  border-color: #ddd;
}
.osp-editorial .osp-contact-band {
  background: #f4f4f2;
  color: #20262b;
  padding-block: 2.5rem;
}
.osp-editorial .osp-contact-band h2, .osp-editorial .osp-contact-band p {
  color: inherit;
}
.osp-editorial .osp-contact-band .osp-kicker {
  color: var(--osp-red);
}
.osp-editorial .osp-contact-band .osp-btn {
  color: #fff;
  background: var(--osp-red);
}
.osp-editorial .osp-contact-note {
  background: transparent;
  padding: 0;
}
.osp-editorial .osp-contact-note a {
  color: var(--osp-red);
}
.osp-editorial .osp-contact-map {
  display: block;
  width: 100%;
  height: 340px;
  margin-top: 2rem;
  border: 0;
}
.osp-editorial .osp-chronicle-hero, .osp-editorial .history-masthead {
  min-height: 0;
  background: #fff;
  color: #20262b;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.osp-editorial .osp-chronicle-hero::after {
  display: none;
}
.osp-editorial .osp-chronicle-breadcrumb {
  margin-bottom: 1.5rem;
}
.osp-editorial .history-masthead::before {
  display: none;
}
.osp-editorial .history-masthead__folio {
  display: none;
}
.osp-editorial .history-masthead__grid {
  grid-template-columns: 1fr;
}
.osp-editorial .osp-chronicle-hero h1, .osp-editorial .history-masthead h1 {
  color: #20262b;
  font-size: clamp(2.25rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
}
.osp-editorial .osp-chronicle-hero__lead, .osp-editorial .history-deck {
  font-family: inherit;
  font-size: 1.05rem;
  color: #5b6268;
  line-height: 1.75;
}
.osp-editorial .history-place {
  color: #61666a;
}
.osp-editorial .osp-chronicle-hero__year {
  border: 0;
  background: #f4f4f2;
  padding: 1.5rem;
}
.osp-editorial .osp-chronicle-hero__year strong {
  font-family: inherit;
  font-size: 4rem;
  color: var(--osp-red);
}
.osp-editorial .osp-chronicle-hero__year span {
  color: #61666a;
}
.osp-editorial .osp-chronicle-breadcrumb {
  color: #61666a;
}
.osp-editorial .osp-chronicle-breadcrumb a {
  color: var(--osp-red);
}
.osp-editorial .osp-chronicle-intro, .osp-editorial .osp-chronicle-founders, .osp-editorial .osp-chronicle-timeline, .osp-editorial .osp-chronicle-archive, .osp-editorial .osp-chronicle-sources,
.osp-editorial .history-opening, .osp-editorial .history-timeline, .osp-editorial .history-names, .osp-editorial .history-gaski, .osp-editorial .history-people, .osp-editorial .history-archive, .osp-editorial .history-sources {
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
}
.osp-editorial .osp-chronicle-dropcap::first-letter, .osp-editorial .history-dropcap::first-letter {
  float: none;
  font: inherit;
  margin: 0;
  color: inherit;
}
.osp-editorial .osp-chronicle-section-head h2, .osp-editorial .history-prose h2, .osp-editorial .history-section-head h2 {
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}
.osp-editorial .osp-chronicle-event__date time, .osp-editorial .history-event time {
  font-family: inherit;
}
.osp-editorial .history-reference-grid article {
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}
.osp-editorial .kgw-hero {
  background: #fff;
  padding-top: 2rem;
}
.osp-editorial.kgw-page :is(h1, h2, h3) {
  font-family: "Manrope", "Segoe UI", sans-serif;
}
.osp-editorial.kgw-page .osp-section-nav a[aria-current=page] {
  color: var(--osp-red);
}
.osp-editorial .kgw-person, .osp-editorial .kgw-contact__panel {
  border-radius: 0;
  box-shadow: none;
}
.osp-editorial .kgw-footer {
  display: none;
}
.osp-editorial .kgw-hero__copy h1 {
  font-family: inherit;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.12;
}
.osp-editorial .kgw-hero__visual {
  border-radius: 0;
  margin-right: 0;
  height: 450px;
  box-shadow: none;
}
.osp-editorial .kgw-hero__visual img {
  border-radius: 0;
}
.osp-editorial .kgw-facts {
  margin-top: 1.5rem;
  padding: 1rem 0;
  border-block: 1px solid #e5e5e5;
}
.osp-editorial .kgw-facts strong {
  font-family: inherit;
}
.osp-editorial .kgw-facts i, .osp-editorial .kgw-card > i, .osp-editorial .kgw-collab__items i {
  display: none;
}
.osp-editorial .kgw-section::after {
  display: none;
}
.osp-editorial .kgw-photo, .osp-editorial .kgw-photo img, .osp-editorial .kgw-card__image, .osp-editorial .kgw-gallery__item, .osp-editorial .kgw-news__image {
  border-radius: 0;
}
.osp-editorial .kgw-card {
  background: transparent;
  padding-bottom: 1.25rem;
}
.osp-editorial .kgw-section-head h2, .osp-editorial .kgw-about h2 {
  font-family: inherit;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}
@media (max-width: 767px) {
  .osp-editorial .osp-contact-card--primary {
    padding-right: 0;
  }
  .osp-editorial .osp-contact-hero__alarm {
    padding-left: 1rem;
  }
  .osp-editorial .osp-chronicle-hero__year strong {
    font-size: 2.7rem;
  }
  .osp-editorial .kgw-hero__visual {
    height: 330px;
  }
  .osp-editorial .osp-contact-map {
    height: 290px;
  }
}

body.osp-has-kgw-page > .osp-footer {
  display: block;
}

.osp-giving section[id] {
  scroll-margin-top: var(--osp-reading-offset, 190px);
}

.osp-home-local {
  background: #f5f5f3;
}

.osp-home-local__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.osp-home-local__grid article {
  min-width: 0;
}

.osp-home-local__grid img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.osp-home-local__grid h3 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  text-transform: none;
  margin: 0 0 0.8rem;
}

.osp-home-local__grid p {
  color: #60666b;
  font-size: 0.94rem;
  line-height: 1.8;
}

.osp-home-local__grid a {
  color: var(--osp-red);
  font-size: 0.88rem;
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.osp-home-local__reading > div {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
}

@media (max-width: 767px) {
  .osp-home-local__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .osp-section-nav__pages {
    gap: 1.25rem;
  }
}
.osp-newsroom {
  background: #fff;
  font-family: "Manrope", "Segoe UI", sans-serif;
}
.osp-newsroom h1, .osp-newsroom h2, .osp-newsroom h3 {
  font-family: inherit;
}
.osp-newsroom .osp-page-head {
  background: #fff;
  color: #19252d;
  padding: 48px 0 18px;
  min-height: 0;
}
.osp-newsroom .osp-page-head::before, .osp-newsroom .osp-page-head::after {
  display: none;
}
.osp-newsroom .osp-page-head h1 {
  color: #19252d;
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 950px;
}
.osp-newsroom .osp-page-head p {
  color: #59656d;
}
.osp-newsroom .osp-kicker {
  color: #d71920;
}
.osp-newsroom .osp-blog-grid-section {
  padding: 30px 0 65px;
  background: #fff;
}
.osp-newsroom .osp-blog-grid-head {
  margin-bottom: 16px;
}
.osp-newsroom .osp-blog-grid-head h2 {
  font-size: 1.25rem;
}
.osp-newsroom .osp-blog-grid-head .osp-kicker {
  display: none;
}
.osp-newsroom .osp-blog-card {
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  padding: 0;
  height: 100%;
}
.osp-newsroom .osp-blog-card:hover {
  box-shadow: none;
  transform: none;
}
.osp-newsroom .osp-blog-card__image {
  border-radius: 3px;
  aspect-ratio: 3/2;
  flex-shrink: 0;
}
.osp-newsroom .osp-blog-card__image::after {
  display: none;
}
.osp-newsroom .osp-blog-card__image img {
  height: 100%;
  object-fit: cover;
}
.osp-newsroom .osp-blog-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 0 12px;
}
.osp-newsroom .osp-blog-card h2 {
  font-size: 1.4rem;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.osp-newsroom .osp-blog-card p {
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 24px;
}
.osp-newsroom .osp-blog-card__link {
  margin-top: auto;
  text-transform: none;
  font-size: 0.88rem;
  font-weight: 700;
}
.osp-newsroom .osp-blog-card__meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  justify-content: space-between;
}
.osp-newsroom .osp-blog-card:hover .osp-blog-card__image img {
  transform: scale(1.025);
}
.osp-newsroom .osp-blog-article, .osp-newsroom .osp-blog-article:hover {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transform: none;
  transition: none;
}
.osp-newsroom .osp-blog-article h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.17;
  letter-spacing: -0.035em;
  margin: 16px 0;
  text-transform: none;
}
.osp-newsroom .osp-blog-article .cms-page-content {
  font-size: 1.075rem;
  line-height: 1.85;
  color: #303a40;
}
.osp-newsroom .osp-blog-article .cms-page-content p {
  line-height: 1.85;
  margin-bottom: 1.3em;
}
.osp-newsroom .osp-blog-article .cms-page-content h2 {
  margin: 2em 0 0.7em;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  line-height: 1.3;
}
.osp-newsroom .osp-blog-article .cms-page-content h3 {
  font-size: 1.35rem;
}
.osp-newsroom .osp-blog-article .cms-page-content img {
  border-radius: 0;
  box-shadow: none;
  max-height: 650px;
  object-fit: contain;
}
.osp-newsroom .osp-blog-article .cms-page-content .osp-blog-hero-image--illustration img {
  max-height: 230px;
  width: 100%;
  object-fit: cover;
}
.osp-newsroom figcaption {
  color: #657078;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: 8px;
}
.osp-newsroom .osp-blog-pagination {
  max-width: none;
  margin: 38px auto 0;
  border-top: 1px solid #e4e6e7;
}
.osp-newsroom .osp-blog-pagination__item {
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  padding: 22px 0;
}
.osp-newsroom .osp-blog-pagination__item:hover {
  background: none;
  box-shadow: none;
  transform: none;
  color: #d71920;
}
.osp-newsroom [id] {
  scroll-margin-top: var(--osp-reading-offset, 180px);
}

.osp-newsroom__intro {
  margin-bottom: 30px;
}

.osp-newsroom__intro--with-image {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.7fr);
  gap: clamp(28px, 4vw, 55px);
  align-items: start;
}

.osp-newsroom__portrait figure {
  margin: 0;
  width: 100%;
}

.osp-newsroom__portrait img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.osp-newsroom__intro-copy {
  min-width: 0;
}

.osp-newsroom .osp-newsroom__intro h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  margin-top: 14px;
}

.osp-newsroom .osp-newsroom__intro .osp-newsroom__lead {
  margin-bottom: 0;
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .osp-newsroom__intro--with-image {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .osp-newsroom__portrait {
    max-width: 420px;
  }
}
.osp-newsroom__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 32px;
}

.osp-newsroom__item {
  min-width: 0;
}

.osp-newsroom__latest {
  color: #c3151d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.osp-newsroom__item--latest {
  grid-column: 1/-1;
  padding-bottom: 30px;
  margin-bottom: 6px;
  border-bottom: 1px solid #e4e6e7;
}
.osp-newsroom__item--latest .osp-blog-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.osp-newsroom__item--latest .osp-blog-card__content {
  padding: 8px 0;
}
.osp-newsroom__item--latest .osp-blog-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}
.osp-newsroom__item--latest .osp-blog-card p {
  -webkit-line-clamp: 5;
}
.osp-newsroom__item--latest .osp-blog-card__meta {
  justify-content: flex-start;
  gap: 20px;
}

@media (max-width: 991px) {
  .osp-newsroom__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
}
.osp-newsroom__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-bottom: 32px;
}

.osp-newsroom__categories a {
  color: #59656d;
  padding: 6px 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.osp-newsroom__categories a[aria-current], .osp-newsroom__categories a:hover {
  color: #b9131a;
  border-bottom-color: #d71920;
}

.osp-newsroom__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 25px;
  font-size: 0.8rem;
  color: #657078;
}

.osp-newsroom__breadcrumb a {
  color: inherit;
}

.osp-newsroom__reading {
  color: #657078;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.osp-newsroom__lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: #35434b;
  margin: 0 0 28px;
}

.osp-newsroom__outline {
  border-block: 1px solid #e4e6e7;
  padding: 15px 0;
  margin: 25px 0 32px;
}

.osp-newsroom__outline summary {
  cursor: pointer;
  font-weight: 700;
}

.osp-newsroom__outline nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  padding: 18px 0 4px;
}

.osp-newsroom__outline a {
  color: #44545e;
  font-size: 0.9rem;
  text-underline-offset: 4px;
}

.osp-news-units ul {
  padding-left: 1.2em;
}

.osp-news-units li {
  padding: 5px 0;
}

.osp-footer__credits {
  display: inline-block;
  margin-top: 7px;
  font-size: 0.8rem;
  opacity: 0.75;
}

@media (max-width: 600px) {
  .osp-newsroom__grid {
    grid-template-columns: 1fr;
  }
  .osp-newsroom__item--latest .osp-blog-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .osp-newsroom .osp-page-head {
    padding-top: 28px;
  }
  .osp-newsroom__outline nav {
    grid-template-columns: 1fr;
  }
  .osp-newsroom .osp-blog-grid-section {
    padding-top: 24px;
  }
}
.kgw-page.osp-editorial {
  --red: #b82025;
  --green: #445b36;
  --yellow: #e6b429;
  --cream: #f8f6f0;
  --ink: #2e342b;
  --muted: #62685c;
  --line: #dce0d2;
  background: var(--cream);
  color: var(--ink);
}
.kgw-page.osp-editorial h1, .kgw-page.osp-editorial h2, .kgw-page.osp-editorial .kgw-hero__copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--green);
}
.kgw-page.osp-editorial h3 {
  color: var(--green);
}
.kgw-page.osp-editorial .kgw-hero {
  background: var(--cream);
}
.kgw-page.osp-editorial .kgw-hero__copy {
  padding-block: 15px 30px;
}
.kgw-page.osp-editorial .kgw-hero__copy h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.12;
}
.kgw-page.osp-editorial .kgw-emblem {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 0 20px;
  mix-blend-mode: multiply;
}
.kgw-page.osp-editorial .kgw-eyebrow {
  color: var(--red);
}
.kgw-page.osp-editorial .kgw-section:nth-of-type(even) {
  background: #fff;
}
.kgw-page.osp-editorial .kgw-section:nth-of-type(odd) {
  background: var(--cream);
}
.kgw-page.osp-editorial .kgw-button {
  background: var(--green);
  border: 1px solid var(--green);
  color: #fff;
  border-radius: 4px;
}
.kgw-page.osp-editorial .kgw-button--outline {
  background: transparent;
  color: var(--green);
}
.kgw-page.osp-editorial .kgw-button:hover {
  background: #35492b;
  color: #fff;
}
.kgw-page.osp-editorial .kgw-hero__visual {
  height: 470px;
  padding: 10px;
  border: 1px solid #aeb99c;
  border-radius: 5px;
  background: #fff;
  box-shadow: 7px 7px 0 #e5e9dc;
  overflow: hidden;
}
.kgw-page.osp-editorial .kgw-hero__visual img {
  border-radius: 2px;
}
.kgw-page.osp-editorial .kgw-photo, .kgw-page.osp-editorial .kgw-gallery__item {
  padding: 6px;
  background: #fff;
  border: 1px solid #c9d1bc;
  border-radius: 3px;
  box-shadow: 0 5px 15px rgba(51, 68, 42, 0.0470588235);
  overflow: hidden;
}
.kgw-page.osp-editorial .kgw-photo img, .kgw-page.osp-editorial .kgw-gallery__item img {
  border-radius: 1px;
  transition: transform 0.55s ease;
}
.kgw-page.osp-editorial .kgw-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 22px;
  align-items: start;
}
.kgw-page.osp-editorial .kgw-gallery__item, .kgw-page.osp-editorial .kgw-gallery__item:nth-child(n+6) {
  display: block;
  width: 100%;
  grid-row: auto;
  grid-column: auto;
  text-align: left;
}
.kgw-page.osp-editorial .kgw-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: center;
  background: #f8f6f0;
  transform: none;
}
.kgw-page.osp-editorial .kgw-gallery__item:hover img {
  transform: none;
}
.kgw-page.osp-editorial .kgw-gallery__item span {
  position: static;
  display: block;
  padding: 12px 8px 8px;
  color: var(--green);
  background: transparent;
  transform: none;
  font-size: 0.8rem;
  line-height: 1.5;
}
.kgw-page.osp-editorial .kgw-gallery__item:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
@media (max-width: 820px) {
  .kgw-page.osp-editorial .kgw-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .kgw-page.osp-editorial .kgw-gallery {
    grid-template-columns: 1fr;
  }
}
.kgw-page.osp-editorial .kgw-card__image, .kgw-page.osp-editorial .kgw-news__image {
  padding: 6px;
  border: 1px solid #d8ddcc;
  background: #fff;
  border-radius: 3px;
}
.kgw-page.osp-editorial .kgw-facts {
  border-color: #cbd3bf;
}
.kgw-page.osp-editorial .kgw-facts strong {
  color: var(--green);
}
.kgw-page.osp-editorial .kgw-section-head {
  padding-bottom: 18px;
}
.kgw-page.osp-editorial .kgw-section-head::after {
  content: "";
  display: block;
  margin-top: 20px;
  width: 64px;
  height: 3px;
  background: var(--yellow);
}
.kgw-page.osp-editorial .kgw-person {
  padding-top: 25px;
  background: #fff;
  border-top: 2px solid #c7d0b9;
}
.kgw-page.osp-editorial .kgw-contact__panel {
  background: var(--green);
  border-radius: 4px;
}
.kgw-page.osp-editorial .osp-section-nav {
  background: #fbfaf6;
  border-color: #dce0d2;
}
.kgw-page.osp-editorial .osp-section-nav__links a:hover {
  color: var(--green);
  border-color: var(--green);
}
.kgw-page.osp-editorial .kgw-reveal {
  opacity: 1;
  transform: none;
}
.kgw-page.osp-editorial.kgw-motion .kgw-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px);
}
.kgw-page.osp-editorial .kgw-reveal {
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--kgw-delay, 0ms);
}

.history-page.osp-editorial {
  --paper: #f7f3e9;
  --paper-dark: #eee7d9;
  --ink: #383c32;
  --green: #46553e;
  --gold: #9a7842;
  --line: #d6cbb7;
  background: var(--paper);
  color: var(--ink);
}
.history-page.osp-editorial h1, .history-page.osp-editorial h2, .history-page.osp-editorial .history-masthead h1, .history-page.osp-editorial .history-prose h2, .history-page.osp-editorial .history-section-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.history-page.osp-editorial .history-masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.history-page.osp-editorial .history-masthead h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}
.history-page.osp-editorial .history-deck {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: #65614f;
}
.history-page.osp-editorial .history-overline {
  color: #826337;
}
.history-page.osp-editorial .history-opening, .history-page.osp-editorial .history-timeline, .history-page.osp-editorial .history-gaski, .history-page.osp-editorial .history-sources {
  background: var(--paper);
}
.history-page.osp-editorial .history-event__date time {
  font-family: Georgia, serif;
  color: var(--gold);
}
.history-page.osp-editorial .history-margin-note {
  color: #79715e;
}
.history-page.osp-editorial .history-map-viewer {
  padding: clamp(8px, 2vw, 22px);
  background: #eee7d9;
  border: 1px solid #c3b397;
  box-shadow: 0 8px 24px rgba(73, 56, 28, 0.0509803922);
}
.history-page.osp-editorial .history-map-image {
  padding: clamp(8px, 2vw, 20px);
  background: #fffdf7;
  border: 1px solid #d4c9b3;
}
.history-page.osp-editorial .history-map-image img {
  border: 1px solid #b5a88d;
  width: 100%;
  height: auto;
}
.history-page.osp-editorial .history-map-image figcaption {
  padding: 18px 0 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #6d6554;
}
.history-page.osp-editorial .history-map-tabs {
  background: transparent;
}
.history-page.osp-editorial .history-reference-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.history-page.osp-editorial .osp-section-nav {
  background: #faf7ef;
  border-color: var(--line);
}
.history-page.osp-editorial .osp-section-nav__links a:hover {
  color: #826337;
  border-color: #826337;
}
.history-page.osp-editorial.history-js [data-history-reveal] {
  transition-duration: 0.65s;
  transform: translateY(12px);
}
.history-page.osp-editorial.history-js [data-history-reveal].is-visible {
  transform: none;
}

@media (max-width: 767px) {
  .kgw-page.osp-editorial .kgw-hero__visual {
    height: 350px;
    margin-right: 7px;
  }
  .kgw-page.osp-editorial .kgw-emblem {
    width: 115px;
    height: 115px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .kgw-page.osp-editorial.kgw-motion .kgw-reveal:not(.is-visible), .history-page.osp-editorial.history-js [data-history-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .kgw-page.osp-editorial img {
    transition: none;
  }
}
.osp-procurement {
  background: #fff;
  color: #20262b;
  font-family: "Manrope", "Segoe UI", sans-serif;
}
.osp-procurement h1, .osp-procurement h2, .osp-procurement h3 {
  color: #20262b;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: none;
}
.osp-procurement h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.osp-procurement h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.3;
}
.osp-procurement h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.osp-procurement p, .osp-procurement li {
  line-height: 1.8;
}
.osp-procurement p {
  color: #596168;
}
.osp-procurement strong {
  color: #20262b;
}
.osp-procurement .text-muted {
  color: #61666a !important;
  font-size: 0.85rem;
}
.osp-procurement .card {
  background: #fff;
  color: inherit;
  border: 1px solid #e5e5e5;
  border-top: 3px solid var(--osp-red);
  border-radius: 0;
  box-shadow: none !important;
}
.osp-procurement a {
  color: var(--osp-red);
  text-underline-offset: 0.25em;
  overflow-wrap: anywhere;
}
.osp-procurement a:hover {
  color: var(--osp-red-dark);
}
.osp-procurement .cms-page-content a[href^="mailto:"] {
  color: var(--osp-red);
  text-decoration: underline;
}
.osp-procurement .cms-page-content a[href^="mailto:"]:hover {
  color: var(--osp-red-dark);
}
.osp-procurement h2 a {
  color: #20262b;
  text-decoration: none;
}
.osp-procurement h2 a:hover {
  color: var(--osp-red);
}
.osp-procurement .btn-primary {
  --bs-btn-bg: var(--osp-red);
  --bs-btn-border-color: var(--osp-red);
  --bs-btn-hover-bg: var(--osp-red-dark);
  --bs-btn-hover-border-color: var(--osp-red-dark);
  --bs-btn-active-bg: var(--osp-red-dark);
  --bs-btn-active-border-color: var(--osp-red-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 1rem 1.35rem;
  border: 1px solid var(--osp-red);
  border-radius: 0;
  background: var(--osp-red);
  color: #fff;
  font: 800 0.85rem/1.5 "Manrope", "Segoe UI", sans-serif;
  text-transform: none;
  text-decoration: none;
  white-space: normal;
  box-shadow: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.osp-procurement .btn-primary:hover, .osp-procurement .btn-primary:focus-visible, .osp-procurement .btn-primary:active {
  background: var(--osp-red-dark);
  border-color: var(--osp-red-dark);
  color: #fff;
  box-shadow: none;
}
.osp-procurement a:focus-visible {
  outline: 2px solid var(--osp-red);
  outline-offset: 4px;
}
.osp-procurement .table {
  --bs-table-color: #303a40;
  --bs-table-bg: #fff;
  --bs-table-border-color: #e5e5e5;
  font-size: 0.9rem;
}
.osp-procurement .table th, .osp-procurement .table td {
  padding: 1rem;
}
.osp-procurement .table thead th {
  background: #20262b;
  color: #fff;
  border-color: #394047;
}
.osp-procurement .table tbody th {
  background: #f4f4f2;
  color: #20262b;
}
@media (max-width: 575px) {
  .osp-procurement .card-body {
    padding: 1.25rem !important;
  }
  .osp-procurement .btn-primary {
    width: 100%;
  }
  .osp-procurement .table th, .osp-procurement .table td {
    padding: 0.65rem;
  }
}
