/*
Theme Name: BlueZC Replica
Theme URI: https://bluezc.com/
Author: Codex
Description: WordPress theme recreating the BlueZC homepage layout with a fixed header, image carousel, research sections, project highlights, news links, and footer navigation.
Version: 1.5.10
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: bluezc-replica
*/

:root {
  --bluezc-cyan: #4abed5;
  --bluezc-navy: #253786;
  --bluezc-deep: #1e3a8a;
  --bluezc-text: #374151;
  --bluezc-muted: #6b7280;
  --bluezc-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bluezc-text);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.bluezc-container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.bluezc-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.bluezc-header__inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bluezc-logo img,
.bluezc-logo svg {
  width: auto;
  height: 56px;
}

.bluezc-logo-text {
  color: var(--bluezc-navy);
  font-size: 1.6rem;
  font-weight: 800;
}

.bluezc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  color: #374151;
}

.bluezc-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bluezc-nav a {
  transition: color 180ms ease;
}

.bluezc-nav a:hover {
  color: #2563eb;
}

.bluezc-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bluezc-learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 24px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--bluezc-cyan);
  font-weight: 700;
  cursor: pointer;
}

.bluezc-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #374151;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
}

.bluezc-main {
  min-height: 100vh;
  padding-top: 90px;
}

.bluezc-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 90px);
  background: #0f172a;
}

.bluezc-carousel {
  position: relative;
  height: calc(100vh - 90px);
  min-height: 760px;
}

.bluezc-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 900ms ease;
}

.bluezc-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.06) 58%, rgba(0, 0, 0, 0.02));
}

.bluezc-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.bluezc-slide__content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1280px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #ffffff;
  padding-top: min(30vh, 310px);
}

.bluezc-slide h1 {
  margin: 0;
  font-size: clamp(4.8rem, 9.5vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 800;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.bluezc-slide p {
  margin: 12px 0 0;
  display: inline-block;
  padding: 9px 18px;
  border-radius: 6px;
  background: rgba(4, 30, 37, 0.72);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-shadow: none;
}

.bluezc-hero-button {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 68px;
  padding: 15px 32px;
  border-radius: 999px;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(34, 151, 156, 0.6);
  font-weight: 800;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.bluezc-hero-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(34, 151, 156, 0.82);
}

.bluezc-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(74, 190, 213, 0.54);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease;
}

.bluezc-arrow:hover {
  background: rgba(74, 190, 213, 0.8);
}

.bluezc-arrow--prev {
  left: 24px;
}

.bluezc-arrow--next {
  right: 24px;
}

.bluezc-dots {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.bluezc-dot {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.bluezc-dot.is-active {
  width: 14px;
  height: 14px;
  background: #ffffff;
}

.bluezc-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.bluezc-section--soft {
  background: linear-gradient(135deg, rgba(239, 249, 253, 0.72), #ffffff 52%, rgba(239, 249, 253, 0.45));
}

.bluezc-section--white {
  background: #ffffff;
}

.bluezc-wave {
  position: absolute;
  inset: 0 0 auto;
  height: 132px;
  opacity: 0.12;
  pointer-events: none;
}

.bluezc-wave svg {
  width: 100%;
  height: 100%;
}

.bluezc-heading {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: center;
}

.bluezc-heading h2 {
  margin: 0 0 22px;
  padding-bottom: 0.2em;
  font-size: clamp(2.45rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: transparent;
  background: linear-gradient(to right, var(--bluezc-cyan), var(--bluezc-navy));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
}

.bluezc-heading p {
  margin: 0 auto;
  color: var(--bluezc-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75;
}

.bluezc-heading strong {
  color: var(--bluezc-cyan);
}

.bluezc-rule {
  width: 96px;
  height: 4px;
  margin: 34px auto 0;
  border-radius: 999px;
  background: linear-gradient(to right, var(--bluezc-cyan), var(--bluezc-navy));
}

.bluezc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bluezc-carbon-card {
  min-height: 250px;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--bluezc-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.bluezc-carbon-card:hover,
.bluezc-mission-card:hover,
.bluezc-spotlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.bluezc-carbon-card h3 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 1.55rem;
}

.bluezc-carbon-card h3 span {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
}

.bluezc-carbon-card p {
  margin: 0;
  text-align: center;
  line-height: 1.65;
}

.bluezc-carbon-card--green {
  color: #ffffff;
  background: linear-gradient(135deg, #2fa8a0 0%, var(--bluezc-cyan) 100%);
}

.bluezc-carbon-card--green h3 span {
  color: #047857;
}

.bluezc-carbon-card--blue {
  margin-top: -24px;
  color: #1f2937;
  background: linear-gradient(135deg, var(--bluezc-cyan) 0%, #bfe6f4 100%);
}

.bluezc-carbon-card--blue h3 span {
  color: #1e3a8a;
}

.bluezc-carbon-card--white {
  color: #374151;
  background: linear-gradient(135deg, #bfe6f4 0%, #ffffff 100%);
}

.bluezc-carbon-card--white h3 span {
  color: #ffffff;
  text-shadow: 0 0 1px var(--bluezc-cyan), 0 1px 1px var(--bluezc-cyan), 1px 0 1px var(--bluezc-cyan), -1px 0 1px var(--bluezc-cyan), 0 -1px 1px var(--bluezc-cyan);
  -webkit-text-stroke: #bfe6f4 1.1px;
}

.bluezc-mission-card {
  min-height: 230px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--bluezc-shadow);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.bluezc-mission-card h3 {
  margin: 0 0 16px;
  text-align: center;
  color: #1e40af;
  font-size: 1.55rem;
}

.bluezc-mission-card p {
  margin: 0;
  text-align: center;
  line-height: 1.7;
  color: #5f6979;
}

.bluezc-spotlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.bluezc-spotlight-card {
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--bluezc-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.bluezc-spotlight-media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #ffffff;
}

.bluezc-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.bluezc-spotlight-card:hover img {
  transform: scale(1.04);
}

.bluezc-spotlight-body {
  padding: 26px;
}

.bluezc-spotlight-body h3 {
  margin: 0 0 4px;
  color: var(--bluezc-cyan);
  font-size: 1.35rem;
}

.bluezc-eyebrow {
  margin: 0 0 16px;
  color: #6b7280;
  font-size: 0.9rem;
}

.bluezc-spotlight-body p {
  margin: 0;
  color: #5f6979;
  line-height: 1.65;
}

.bluezc-mini-button {
  display: inline-flex;
  margin-top: 22px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #334155;
  background: linear-gradient(to right, #eff6ff, #ecfdf5);
  font-weight: 700;
}

.bluezc-news-panel {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--bluezc-shadow);
}

.bluezc-news-panel h3 {
  margin: 0 0 18px;
  color: var(--bluezc-navy);
  font-size: 1.55rem;
}

.bluezc-news-list {
  display: grid;
  gap: 12px;
}

.bluezc-news-item {
  display: block;
  padding: 14px;
  border-radius: 8px;
  background: #f9fafb;
  transition: background 180ms ease;
}

.bluezc-news-item:hover {
  background: #eff6ff;
}

.bluezc-news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 0.78rem;
}

.bluezc-source {
  padding: 3px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  color: #4b5563;
}

.bluezc-news-item h4 {
  margin: 0;
  color: #1f2937;
  font-size: 0.98rem;
  line-height: 1.35;
}

.bluezc-news-item:hover h4 {
  color: #2563eb;
}

.bluezc-actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.bluezc-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 48px;
  padding: 12px 30px;
  border-radius: 999px;
  color: #ffffff;
  background: #2563eb;
  font-weight: 800;
  transition: background 180ms ease;
}

.bluezc-primary-link:hover {
  background: #1d4ed8;
}

.bluezc-cta {
  padding: 80px 0;
  background: #ffffff;
}

.bluezc-cta__box {
  padding: 44px;
  border-radius: 16px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(to right, #2a3c89, #5ac9de);
}

.bluezc-cta h2 {
  margin: 0 0 12px;
  font-size: 2.1rem;
}

.bluezc-cta p {
  margin: 0 0 30px;
  color: #dbeafe;
  font-size: 1.25rem;
}

.bluezc-cta__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.bluezc-cta__links a {
  display: inline-flex;
  justify-content: center;
  min-width: 150px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 800;
}

.bluezc-cta__primary {
  color: #2563eb;
  background: #ffffff;
}

.bluezc-cta__secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.bluezc-footer {
  color: #ffffff;
  background: #111827;
}

.bluezc-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 0 46px;
}

.bluezc-footer h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.bluezc-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bluezc-footer a {
  color: #d1d5db;
  transition: color 180ms ease;
}

.bluezc-footer a:hover {
  color: #ffffff;
}

.bluezc-footer__bottom {
  padding: 28px 0;
  border-top: 1px solid #1f2937;
  color: #9ca3af;
  text-align: center;
}

.bluezc-page {
  padding: 160px 0 80px;
}

.bluezc-page h1 {
  color: var(--bluezc-navy);
}

.bluezc-modal-open {
  overflow: hidden;
}

.bluezc-video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.bluezc-video-modal.is-open {
  display: flex;
}

.bluezc-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 18, 0.74);
}

.bluezc-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
}

.bluezc-video-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  color: #ffffff;
  background: #28398b;
}

.bluezc-video-modal__head h2 {
  margin: 0 0 4px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.bluezc-video-modal__head p {
  margin: 0;
  color: #dbeafe;
  font-weight: 700;
}

.bluezc-video-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.bluezc-video-modal__frame {
  aspect-ratio: 16 / 9;
  background: #000000;
}

.bluezc-video-modal__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.bluezc-video-modal__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px;
  color: #4b5563;
  background: #ffffff;
}

.bluezc-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.bluezc-gallery-modal.is-open {
  display: flex;
}

.bluezc-gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.84);
}

.bluezc-gallery-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(100%, 1120px);
  max-height: calc(100vh - 56px);
}

.bluezc-gallery-modal__dialog > img {
  justify-self: center;
  max-width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  background: #000000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.bluezc-gallery-modal__close,
.bluezc-gallery-modal__arrow {
  position: absolute;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(74, 190, 213, 0.72);
  cursor: pointer;
}

.bluezc-gallery-modal__close {
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  font-size: 32px;
}

.bluezc-gallery-modal__arrow {
  top: 45%;
  width: 54px;
  height: 54px;
  font-size: 42px;
  transform: translateY(-50%);
}

.bluezc-gallery-modal__arrow--prev {
  left: -20px;
}

.bluezc-gallery-modal__arrow--next {
  right: -20px;
}

.bluezc-gallery-modal__thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  overflow-x: auto;
  padding: 8px 0;
}

.bluezc-gallery-modal__thumbs button {
  flex: 0 0 auto;
  width: 82px;
  height: 58px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.bluezc-gallery-modal__thumbs button.is-active {
  border-color: #ffffff;
}

.bluezc-gallery-modal__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bluezc-inner-hero {
  padding: 88px 0 76px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(37, 55, 134, 0.92), rgba(74, 190, 213, 0.86)), url("assets/images/homepage/home.jpeg") center/cover;
}

.bluezc-inner-hero p {
  margin: 0 0 18px;
  font-weight: 700;
  opacity: 0.88;
}

.bluezc-inner-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.bluezc-inner-hero h2 {
  max-width: 840px;
  margin: 18px 0 0;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
}

.bluezc-about-hero {
  min-height: var(--bluezc-about-hero-height, 420px);
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.05)),
    var(--bluezc-about-hero-image, url("assets/images/homepage/home.jpeg")) var(--bluezc-about-hero-position, center)/cover;
}

.bluezc-about-hero h1 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(4.2rem, 8vw, 5.9rem);
  line-height: 1;
  letter-spacing: 0;
}

.bluezc-about-hero h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 400;
  line-height: 1.45;
}

.bluezc-about-hero span {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 32px;
  background: #ffffff;
}

.bluezc-about-feature-card div,
.bluezc-about-team-card__bio {
  color: #5f6979;
  line-height: 1.7;
}

.bluezc-about-feature-card div p,
.bluezc-about-team-card__bio p {
  margin: 0 0 14px;
}

.bluezc-about-feature-card div p:last-child,
.bluezc-about-team-card__bio p:last-child {
  margin-bottom: 0;
}

.bluezc-about-team-card a {
  display: inline-block;
  margin-top: 12px;
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.bluezc-about-mission {
  padding: 76px 0 42px;
}

.bluezc-about-mission__panel {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 48px 70px;
  border-radius: 12px;
  background: linear-gradient(120deg, #f3f5ff 0%, #eefcff 55%, #f2fff5 100%);
}

.bluezc-about-mission__body {
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.bluezc-about-mission__body h2 {
  margin: 0 0 18px;
  color: #3674a8;
  font-size: clamp(1.9rem, 3.2vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: 0.03em;
}

.bluezc-about-mission__tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 30px;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 800;
}

.bluezc-about-mission__tagline strong:nth-of-type(1) {
  color: #253786;
}

.bluezc-about-mission__tagline strong:nth-of-type(2) {
  color: #357ee8;
}

.bluezc-about-mission__tagline strong:nth-of-type(3) {
  color: #4abed5;
}

.bluezc-about-mission__dash {
  color: #aeb6c3;
  font-weight: 600;
}

.bluezc-about-mission__content {
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.55;
}

.bluezc-about-mission__content p {
  margin: 0 0 18px;
}

.bluezc-about-mission__content p:last-child {
  margin-bottom: 0;
}

.bluezc-about-what {
  padding-top: 20px;
}

.bluezc-about-what__heading {
  margin: 0 auto 42px;
  text-align: center;
}

.bluezc-about-what__heading h2 {
  margin: 0 0 22px;
  color: #3674a8;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.bluezc-about-what__heading p {
  margin: 0;
  color: #374151;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.bluezc-about-what__image {
  width: min(100%, 1120px);
  height: var(--bluezc-about-what-height, 520px);
  margin: 0 auto 64px;
  border-radius: 18px;
  background: var(--bluezc-about-what-image) var(--bluezc-about-what-position, center)/cover;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.bluezc-about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.bluezc-about-feature-card {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.bluezc-about-feature-card h3 {
  display: grid;
  place-items: center;
  min-height: 126px;
  margin: 0;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #4abed5 0%, #253786 100%);
  font-size: 1.28rem;
  line-height: 1.25;
  text-align: center;
}

.bluezc-about-feature-card div {
  min-height: 154px;
  padding: 28px 24px;
  color: #374151;
  font-size: 1.06rem;
  line-height: 1.55;
}

.bluezc-about-feature-card div p {
  margin: 0;
}

.bluezc-about-feature-card strong {
  color: #253786;
}

.bluezc-about-team .bluezc-team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.bluezc-about-team-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.bluezc-team-card.bluezc-about-team-card div {
  padding: 0;
}

.bluezc-about-team-card > img {
  width: 100%;
  height: 350px;
  min-height: 0;
  object-fit: cover;
}

.bluezc-about-team-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 24px;
}

.bluezc-team-card.bluezc-about-team-card > div {
  padding: 26px 24px;
}

.bluezc-about-team-card h3 {
  margin: 0 0 8px;
  color: #4abed5;
  font-size: 1.35rem;
}

.bluezc-about-team-card .bluezc-eyebrow {
  margin: 0 0 14px;
  color: #253786;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bluezc-about-team-card__bio {
  display: -webkit-box;
  min-height: 92px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.bluezc-about-team-card button {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  color: #1f2937;
  background: linear-gradient(90deg, #f5f7ff, #f1fff7);
  font-size: 1rem;
  cursor: pointer;
}

.bluezc-about-bio-modal {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 86px 24px 32px;
}

.bluezc-about-bio-modal.is-open {
  display: flex;
}

.bluezc-about-bio-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.bluezc-about-bio-modal__dialog {
  position: relative;
  width: min(100%, 670px);
  max-height: calc(100vh - 82px);
  overflow: auto;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.35);
}

.bluezc-about-bio-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 26px;
  cursor: pointer;
}

.bluezc-about-bio-modal__dialog > img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.bluezc-about-bio-modal__body {
  padding: 30px 32px 46px;
}

.bluezc-about-bio-modal__body h2 {
  margin: 0 0 8px;
  color: #4abed5;
  font-size: 1.95rem;
  line-height: 1.15;
}

.bluezc-about-bio-modal__body h3 {
  margin: 28px 0 18px;
  color: #111827;
  font-size: 1.25rem;
  line-height: 1.2;
}

.bluezc-about-bio-modal__body p {
  margin: 0 0 20px;
  color: #1f2937;
  font-size: 1.18rem;
  line-height: 1.48;
}

.bluezc-about-bio-modal__body p:last-child {
  margin-bottom: 0;
}

.bluezc-about-bio-modal__body strong {
  color: #1f2937;
  font-weight: 800;
}

.bluezc-about-bio-modal__body em {
  font-style: italic;
}

.bluezc-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.bluezc-team-card,
.bluezc-project-card,
.bluezc-news-card,
.bluezc-info-panel,
.bluezc-form {
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--bluezc-shadow);
}

.bluezc-team-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bluezc-team-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.bluezc-team-card div,
.bluezc-project-card div,
.bluezc-news-card div,
.bluezc-info-panel,
.bluezc-form {
  padding: 24px;
}

.bluezc-team-card h3,
.bluezc-project-card h3,
.bluezc-news-card h3,
.bluezc-info-panel h2,
.bluezc-form h2 {
  margin: 0 0 8px;
  color: var(--bluezc-navy);
}

.bluezc-team-card p,
.bluezc-project-card p,
.bluezc-news-card p,
.bluezc-info-panel p,
.bluezc-form p {
  color: #5f6979;
  line-height: 1.65;
}

.bluezc-team-card span,
.bluezc-project-card a,
.bluezc-news-card a,
.bluezc-card-foot a {
  color: #2563eb;
}

.bluezc-toolbar,
.bluezc-chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.bluezc-projects-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04)),
    var(--bluezc-projects-hero-image, url("assets/images/homepage/salt-ponds.jpeg")) center/cover;
}

.bluezc-projects-hero h1 {
  margin: 0 0 26px;
  font-size: clamp(4.2rem, 8vw, 5.9rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.bluezc-projects-hero h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.bluezc-projects-hero span {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 34px;
  background: #ffffff;
}

.bluezc-projects-breadcrumb {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.bluezc-projects-breadcrumb .bluezc-container {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  color: #6b7280;
}

.bluezc-projects-breadcrumb strong {
  color: #111827;
}

.bluezc-projects-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -80px calc(50% - 50vw) 42px;
  padding: 28px max(24px, calc((100vw - 1280px) / 2));
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.bluezc-projects-sort {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bluezc-projects-sort strong {
  color: #111827;
}

.bluezc-projects-sort button,
.bluezc-projects-count {
  min-height: 40px;
  padding: 10px 22px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: #111827;
  background: #ffffff;
  box-shadow: 0 2px 7px rgba(15, 23, 42, 0.06);
  font: inherit;
  font-weight: 700;
}

.bluezc-projects-sort button {
  cursor: pointer;
}

.bluezc-projects-search {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 86px;
  width: min(100%, 760px);
}

.bluezc-projects-search input {
  flex: 1;
  min-height: 58px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 20px;
  font: inherit;
  font-size: 1.05rem;
}

.bluezc-projects-search button {
  min-width: 126px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: #253786;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

[data-project-card][hidden] {
  display: none;
}

.bluezc-toolbar span,
.bluezc-toolbar strong,
.bluezc-chip-row span {
  padding: 9px 13px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  color: #1e40af;
  background: #ffffff;
  font-size: 0.92rem;
}

.bluezc-project-grid {
  display: grid;
  grid-template-columns: repeat(var(--bluezc-project-columns, 3), 1fr);
  gap: 32px;
}

.bluezc-project-card,
.bluezc-news-card {
  display: flex;
  flex-direction: column;
}

.bluezc-project-card__media {
  display: block;
  overflow: hidden;
}

.bluezc-project-card img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  background: #ffffff;
  transition: transform 260ms ease;
}

.bluezc-project-card img[src*="SAL_C"] {
  object-fit: contain;
  padding: 18px;
}

.bluezc-card-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
  color: #6b7280;
  font-size: 0.95rem;
}

.bluezc-project-card {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 9px 22px rgba(15, 23, 42, 0.11);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.bluezc-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
}

.bluezc-project-card:hover img {
  transform: scale(1.06);
}

.bluezc-project-card__link {
  display: flex;
  height: 100%;
  color: inherit;
  flex-direction: column;
  font-weight: 400;
  text-decoration: none;
}

.bluezc-project-grid .bluezc-project-card > .bluezc-project-card__link > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 48px 32px 32px;
}

.bluezc-project-card h3 {
  margin: 0 0 36px;
  color: var(--bluezc-cyan);
  font-size: 1.48rem;
  line-height: 1.2;
  font-weight: 700;
}

.bluezc-project-card p {
  margin: 0;
  color: #273244;
  font-size: 1rem;
  line-height: 1.48;
  font-weight: 400;
}

.bluezc-card-foot strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid #dbe3ea;
  border-radius: 8px;
  color: #1f2f4a;
  background: linear-gradient(to right, #eef2ff, #effdf7);
  font-weight: 500;
  font-size: 1rem;
}

.bluezc-split,
.bluezc-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.bluezc-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bluezc-news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.bluezc-news-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.04)),
    var(--bluezc-news-hero-image, url("assets/images/homepage/salt-ponds.jpeg")) var(--bluezc-news-hero-position, center)/cover;
}

.bluezc-news-hero h1 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(4.2rem, 8vw, 5.9rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.bluezc-news-hero h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.bluezc-news-hero span {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 34px;
  background: #ffffff;
}

.bluezc-news-listing {
  background: #f8fafc;
}

.bluezc-news-listing > .bluezc-container {
  position: relative;
  padding: 22px 0 32px;
}

.bluezc-news-filters {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
}

.bluezc-news-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #9ca3af;
  background: #ffffff;
}

.bluezc-news-search svg {
  width: 20px;
  height: 20px;
}

.bluezc-news-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #374151;
  background: transparent;
  font: inherit;
  font-size: 1rem;
}

.bluezc-news-type-filter {
  display: flex;
  overflow: hidden;
  border: 1px solid #d7deea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.bluezc-news-type-filter button,
.bluezc-news-sort select,
.bluezc-news-category-row button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #374151;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.bluezc-news-type-filter button {
  min-width: 94px;
  padding: 0 22px;
}

.bluezc-news-type-filter button.is-active {
  color: #ffffff;
  background: #26388b;
  box-shadow: 0 8px 18px rgba(38, 56, 139, 0.24);
}

.bluezc-news-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bluezc-news-sort strong,
.bluezc-news-category-row strong {
  color: #111827;
  font-weight: 800;
}

.bluezc-news-sort label {
  display: block;
}

.bluezc-news-sort select {
  min-width: 118px;
  padding: 0 38px 0 18px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  box-shadow: 0 2px 7px rgba(15, 23, 42, 0.06);
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #374151 50%),
    linear-gradient(135deg, #374151 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 18px,
    calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.bluezc-news-sort select:focus {
  border-color: #26388b;
  outline: 0;
  box-shadow: 0 8px 18px rgba(38, 56, 139, 0.2);
}

.bluezc-news-category-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-right: 130px;
}

.bluezc-news-category-row button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 15px;
  border: 1px solid #0ea5d9;
  border-radius: 999px;
  color: #0891b2;
  background: #ffffff;
  font-size: 0.86rem;
}

.bluezc-news-category-row button span {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: currentColor;
}

.bluezc-news-category-row button.is-active {
  border-color: #26388b;
  color: #ffffff;
  background: #26388b;
}

.bluezc-news-result-count {
  position: absolute;
  right: 0;
  bottom: 34px;
  color: #4b5563;
  font-size: 1rem;
}

.bluezc-news-results {
  padding: 76px 0 70px;
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
}

.bluezc-news-grid {
  gap: 40px;
}

.bluezc-news-card {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}

.bluezc-news-card:focus-visible {
  outline: 3px solid rgba(74, 190, 213, 0.6);
  outline-offset: 4px;
}

.bluezc-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
}

.bluezc-news-card .bluezc-news-card__media,
.bluezc-news-card .bluezc-news-card__badges,
.bluezc-news-card .bluezc-news-card__body,
.bluezc-news-card .bluezc-news-card__meta,
.bluezc-news-card .bluezc-news-card__actions {
  padding: 0;
}

.bluezc-news-card__media {
  position: relative;
  display: block;
  height: 255px;
  overflow: hidden;
  background: #e5e7eb;
}

.bluezc-news-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 260ms ease;
}

.bluezc-news-card:hover .bluezc-news-card__media img {
  transform: scale(1.05);
}

.bluezc-news-card__badges {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.bluezc-news-card__badges span,
.bluezc-news-card__badges strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.bluezc-news-card__badges span {
  max-width: 72%;
  border: 2px solid #4abed5;
  color: #4abed5;
  background: #ffffff;
}

.bluezc-news-card__badges span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: currentColor;
}

.bluezc-news-card__badges strong {
  color: #ffffff;
  background: #253786;
  white-space: nowrap;
}

.bluezc-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 315px;
  padding: 28px 28px 30px !important;
}

.bluezc-news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  color: #6b7280;
  font-size: 0.95rem;
}

.bluezc-news-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bluezc-news-card__source i {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #facc15;
}

.bluezc-news-card__source img,
.bluezc-news-source-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.bluezc-news-source-icon--youtube {
  color: #ff0033;
}

.bluezc-news-card__meta time {
  padding: 5px 12px;
  border-radius: 999px;
  color: #9ca3af;
  background: #f1f3f8;
  font-size: 0.86rem;
}

.bluezc-news-card h3 {
  margin: 0 0 18px;
  color: var(--bluezc-cyan);
  font-size: 1.55rem;
  line-height: 1.35;
  font-weight: 800;
}

.bluezc-news-card p {
  margin: 0;
  color: #374151;
  font-size: 1rem;
  line-height: 1.52;
}

.bluezc-news-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 32px;
}

.bluezc-news-card__actions a,
.bluezc-news-card__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 17px;
  border: 1px solid #dbe3ea;
  border-radius: 8px;
  color: #1f2f4a;
  background: linear-gradient(to right, #eef2ff, #effdf7);
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.bluezc-news-card__actions .bluezc-news-card__pdf {
  gap: 8px;
  color: #1f2f4a;
  background: #f3f4f8;
}

.bluezc-news-card__actions .bluezc-news-card__source-link,
.bluezc-news-modal__foot .bluezc-news-card__source-link {
  color: #374151;
  background: #ffffff;
}

.bluezc-news-card__pdf svg {
  width: 18px;
  height: 18px;
}

.bluezc-news-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  padding: 30px;
}

.bluezc-news-modal.is-open {
  display: block;
}

.bluezc-news-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.bluezc-news-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 1060px);
  max-height: calc(100vh - 60px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.bluezc-news-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 18px 28px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.bluezc-news-modal__top .bluezc-news-card__meta {
  justify-content: flex-start;
  margin: 0;
}

.bluezc-news-modal__top > button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  color: #111827;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.bluezc-news-modal__image {
  display: grid;
  place-items: center;
  max-height: 440px;
  overflow: hidden;
  background: #f3f4f6;
}

.bluezc-news-modal__image img {
  width: auto;
  max-width: 100%;
  max-height: 440px;
  object-fit: contain;
}

.bluezc-news-modal__body {
  padding: 28px 30px 8px;
  overflow-y: auto;
}

.bluezc-news-modal__body .bluezc-news-card__badges {
  position: static;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.bluezc-news-modal__body h2 {
  margin: 0 0 24px;
  color: var(--bluezc-cyan);
  font-size: clamp(1.9rem, 4vw, 2.45rem);
  line-height: 1.15;
}

.bluezc-news-modal__content {
  color: #374151;
  font-size: 1.13rem;
  line-height: 1.65;
}

.bluezc-news-modal__content p {
  margin: 0 0 18px;
}

.bluezc-news-modal__content img {
  height: auto;
  margin: 18px auto;
}

.bluezc-news-modal__foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 28px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.bluezc-news-modal__foot a,
.bluezc-news-modal__foot button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.bluezc-news-modal__foot a {
  color: #1f2f4a;
  background: #f3f4f8;
}

.bluezc-news-modal__foot button {
  margin-left: auto;
  color: #ffffff;
  background: #26388b;
}

.bluezc-news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 70px;
  color: #4b5563;
}

.bluezc-news-pagination button {
  min-width: 48px;
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: #374151;
  background: #ffffff;
  font: inherit;
  cursor: pointer;
}

.bluezc-news-pagination button.is-active {
  border-color: #26388b;
  color: #ffffff;
  background: #26388b;
}

.bluezc-news-pagination button:disabled {
  color: #9ca3af;
  cursor: not-allowed;
}

.bluezc-news-pagination p {
  flex-basis: 100%;
  margin: 12px 0 0;
  text-align: center;
}

.bluezc-news-cta {
  padding: 66px 0 72px;
  background: #f8fafc;
}

.bluezc-news-cta__box {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 52px 36px;
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(100deg, #26388b, #52bfd3);
}

.bluezc-news-cta__box h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 800;
}

.bluezc-news-cta__box p {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: 1.28rem;
}

.bluezc-news-cta__box > div {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bluezc-news-cta__primary,
.bluezc-news-cta__secondary {
  display: inline-flex;
  min-width: 170px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 800;
}

.bluezc-news-cta__primary {
  color: #253786;
  background: #ffffff;
}

.bluezc-news-cta__secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.bluezc-contact-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04)),
    var(--bluezc-contact-hero-image, url("assets/images/homepage/salt-ponds.jpeg")) var(--bluezc-contact-hero-position, center)/cover;
}

.bluezc-contact-hero h1 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(4.2rem, 8vw, 5.9rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.bluezc-contact-hero h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.bluezc-contact-hero span {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 34px;
  background: #ffffff;
}

.bluezc-contact-section {
  padding: 58px 0;
  background: #ffffff;
}

.bluezc-contact-section h2 {
  margin: 0 0 34px;
  color: transparent;
  background: linear-gradient(to right, #253786, #4abed5);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2rem, 4vw, 2.35rem);
  line-height: 1.15;
  text-align: center;
}

.bluezc-contact-location-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  width: min(100%, 980px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #d8dfea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.bluezc-contact-location-card aside {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 44px 32px;
  color: #253044;
  background: #eef2ff;
  text-align: center;
}

.bluezc-contact-location-card aside h3 {
  margin: 0;
  color: #253786;
  font-size: 1.45rem;
}

.bluezc-contact-location-card aside p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.bluezc-contact-coordinates {
  min-width: 210px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.bluezc-contact-coordinates strong,
.bluezc-contact-coordinates span {
  display: block;
}

.bluezc-contact-coordinates strong {
  margin-bottom: 8px;
  color: #4b5563;
  font-weight: 500;
}

.bluezc-contact-coordinates span {
  color: #111827;
  font-size: 0.92rem;
}

.bluezc-contact-map {
  padding: 38px 32px 28px;
}

.bluezc-contact-map h3 {
  margin: 0 0 24px;
  color: #253786;
  font-size: 1.45rem;
}

.bluezc-contact-map iframe,
.bluezc-contact-map__empty {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 8px;
  background: #edf2f7;
}

.bluezc-contact-map__empty {
  display: grid;
  place-items: center;
  color: #253786;
  font-weight: 800;
}

.bluezc-contact-map p {
  margin: 16px 0 0;
  text-align: center;
  color: #374151;
  letter-spacing: 0.04em;
}

.bluezc-contact-support {
  padding-top: 44px;
}

.bluezc-contact-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.bluezc-contact-support-grid article,
.bluezc-contact-info,
.bluezc-contact-form-card {
  border: 1px solid #cbd7ff;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5f7ff, #effdff);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.bluezc-contact-support-grid article {
  min-height: 210px;
  padding: 34px 36px;
}

.bluezc-contact-support-grid h3 {
  margin: 0 0 20px;
  color: #253786;
  font-size: 1.35rem;
}

.bluezc-contact-support-grid p,
.bluezc-contact-info p,
.bluezc-contact-form-heading p {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.55;
}

.bluezc-contact-iban {
  position: relative;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #cbd7ff;
  border-radius: 8px;
  background: #ffffff;
}

.bluezc-contact-iban span,
.bluezc-contact-iban strong {
  display: block;
}

.bluezc-contact-iban span {
  margin-bottom: 12px;
  color: #4b5563;
}

.bluezc-contact-iban strong {
  color: #253786;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-wrap: anywhere;
}

.bluezc-contact-iban button {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 30px;
  border: 0;
  border-radius: 4px;
  padding: 5px 12px;
  color: #253786;
  background: #dfe6ff;
  cursor: pointer;
}

.bluezc-contact-info {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 34px;
  text-align: center;
}

.bluezc-contact-info h2 {
  margin-bottom: 22px;
  font-size: 1.6rem;
}

.bluezc-contact-info a {
  color: #253786;
  font-weight: 800;
}

.bluezc-contact-form-section {
  padding-top: 30px;
}

.bluezc-contact-form-heading {
  width: min(100%, 680px);
  margin: 0 auto 34px;
  text-align: center;
}

.bluezc-contact-form-heading h2 {
  margin-bottom: 20px;
}

.bluezc-contact-form-card {
  display: grid;
  gap: 22px;
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 34px;
  background: #ffffff;
}

.bluezc-contact-form-status {
  width: min(100%, 620px);
  margin: 0 auto 18px;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
}

.bluezc-contact-form-status--success {
  border: 1px solid #a7f3d0;
  color: #065f46;
  background: #ecfdf5;
}

.bluezc-contact-form-status--error {
  border: 1px solid #fecaca;
  color: #991b1b;
  background: #fef2f2;
}

.bluezc-contact-form-card label {
  display: grid;
  gap: 9px;
  color: #1f2937;
  font-weight: 700;
}

.bluezc-contact-form-card label span small {
  color: #9ca3af;
  font-weight: 400;
}

.bluezc-contact-form-card em {
  color: #dc2626;
  font-style: normal;
}

.bluezc-contact-form-card input,
.bluezc-contact-form-card textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 14px 16px;
  color: #374151;
  font: inherit;
  font-size: 1rem;
}

.bluezc-contact-form-card textarea {
  min-height: 96px;
  resize: vertical;
}

.bluezc-contact-form-card label > small {
  color: #6b7280;
  font-weight: 400;
}

.bluezc-contact-form-card > p {
  margin: 0;
  color: #6b7280;
  text-align: center;
}

.bluezc-contact-form-card button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: #253786;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.bluezc-wonderlab-hero {
  min-height: var(--bluezc-wonderlab-hero-height, 420px);
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02)),
    var(--bluezc-wonderlab-hero-image, url("assets/images/homepage/salt-ponds.jpeg")) var(--bluezc-wonderlab-hero-position, center)/cover;
}

.bluezc-wonderlab-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(3.8rem, 7vw, 5.4rem);
  line-height: 1;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.bluezc-wonderlab-hero h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.bluezc-wonderlab-hero span {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 34px;
  background: #ffffff;
}

.bluezc-wonderlab-approach {
  padding: 64px 0 48px;
  background: #ffffff;
}

.bluezc-wonderlab-approach-box {
  width: min(100%, 1020px);
  margin: 0 auto;
  padding: 52px 72px;
  border-radius: 8px;
  background: linear-gradient(110deg, #f0f2ff, #ecfbfc);
  color: #233047;
  text-align: center;
}

.bluezc-wonderlab-approach-box h2 {
  margin: 0 0 30px;
  color: #3c7ba9;
  font-size: 1.85rem;
  line-height: 1.15;
  font-weight: 800;
}

.bluezc-wonderlab-approach-box p {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.75;
}

.bluezc-wonderlab-fep,
.bluezc-wonderlab-experiences {
  padding: 56px 0 40px;
  background: #ffffff;
}

.bluezc-wonderlab-heading {
  margin: 0 auto 56px;
  text-align: center;
}

.bluezc-wonderlab-fep .bluezc-wonderlab-heading {
  width: min(100%, 760px);
}

.bluezc-wonderlab-heading h2 {
  margin: 0 0 24px;
  color: var(--bluezc-navy);
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  line-height: 1.12;
  font-weight: 800;
  background: linear-gradient(90deg, var(--bluezc-navy), var(--bluezc-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bluezc-wonderlab-heading p {
  margin: 0;
  color: #374151;
  font-size: 1.35rem;
  line-height: 1.45;
}

.bluezc-wonderlab-heading--center p {
  color: #10a7a4;
}

.bluezc-wonderlab-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: min(100%, 1020px);
  margin: 0 auto;
}

.bluezc-wonderlab-info-card {
  min-height: 250px;
  padding: 34px 38px;
  border: 1px solid #dbe8ff;
  border-radius: 8px;
  background: linear-gradient(110deg, #effbfd, #f4f7ff);
  box-shadow: 0 7px 14px rgba(15, 23, 42, 0.1);
}

.bluezc-wonderlab-info-card h3 {
  margin: 0 0 26px;
  color: var(--bluezc-cyan);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 800;
}

.bluezc-wonderlab-info-card p {
  margin: 0 0 24px;
  color: #253044;
  font-size: 1.04rem;
  line-height: 1.62;
}

.bluezc-wonderlab-info-card p:last-child {
  margin-bottom: 0;
}

.bluezc-wonderlab-info-card strong {
  color: #253786;
  font-weight: 800;
}

.bluezc-wonderlab-info-card em,
.bluezc-wonderlab-info-card a {
  color: var(--bluezc-cyan);
  font-style: normal;
  font-weight: 800;
}

.bluezc-wonderlab-info-card ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bluezc-wonderlab-info-card li,
.bluezc-wonderlab-info-card:nth-child(2) p:not(:first-of-type) {
  position: relative;
  min-height: 32px;
  margin: 0;
  padding-left: 46px;
  color: #253044;
  font-size: 1.04rem;
  line-height: 1.5;
}

.bluezc-wonderlab-info-card li::before,
.bluezc-wonderlab-info-card:nth-child(2) p:not(:first-of-type)::before {
  content: "H";
  position: absolute;
  left: 0;
  top: -3px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #25408f, #4abed5);
  font-size: 0.78rem;
  font-weight: 800;
}

.bluezc-wonderlab-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  width: min(100%, 1020px);
  margin: 0 auto;
}

.bluezc-wonderlab-card {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.bluezc-wonderlab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.bluezc-wonderlab-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.bluezc-wonderlab-card__media {
  display: block;
  overflow: hidden;
}

.bluezc-wonderlab-card img {
  display: block;
  width: 100%;
  height: 370px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.bluezc-wonderlab-card:hover img {
  transform: scale(1.05);
}

.bluezc-wonderlab-card__body {
  display: grid;
  gap: 16px;
  padding: 28px 32px 30px;
}

.bluezc-wonderlab-card__body > strong {
  color: var(--bluezc-cyan);
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 800;
}

.bluezc-wonderlab-card__body > span {
  color: #253044;
  font-size: 1rem;
  line-height: 1.45;
}

.bluezc-wonderlab-card__body > span strong {
  color: #253786;
}

.bluezc-wonderlab-card__body > em {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 38px;
  margin-top: 4px;
  padding: 8px 16px;
  border: 1px solid #dbe3ea;
  border-radius: 8px;
  color: #1f2f4a;
  background: linear-gradient(to right, #eef2ff, #effdf7);
  font-style: normal;
  font-weight: 500;
}

.bluezc-wonderlab-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  padding: 64px 24px;
  overflow-y: auto;
}

.bluezc-wonderlab-modal.is-open {
  display: block;
}

.bluezc-wonderlab-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.bluezc-wonderlab-modal__dialog {
  position: relative;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 34px 34px 42px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.bluezc-wonderlab-modal__dialog h2 {
  margin: 0 56px 28px;
  color: var(--bluezc-cyan);
  font-size: 2rem;
  line-height: 1.1;
  text-align: center;
}

.bluezc-wonderlab-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  color: #6b7280;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.bluezc-wonderlab-modal__gallery {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  background: #f3f4f6;
  border-radius: 8px;
}

.bluezc-wonderlab-modal__gallery > div {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.bluezc-wonderlab-modal__gallery [data-wonderlab-gallery-image] {
  display: none;
  width: 100%;
  height: 100%;
}

.bluezc-wonderlab-modal__gallery img {
  object-fit: contain;
  background: #f3f4f6;
}

.bluezc-wonderlab-modal__gallery video {
  object-fit: contain;
  background: #111827;
}

.bluezc-wonderlab-modal__gallery [data-wonderlab-gallery-image].is-active {
  display: block;
}

.bluezc-wonderlab-modal__pdf.is-active {
  display: flex;
}

.bluezc-wonderlab-modal__pdf {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: #253786;
  background: #f0f2ff;
  text-decoration: none;
}

.bluezc-wonderlab-modal__pdf svg {
  width: 72px;
  height: 72px;
}

.bluezc-wonderlab-modal__caption {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: none;
  max-width: min(80%, 460px);
  transform: translateX(-50%);
  padding: 10px 18px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.bluezc-wonderlab-modal__caption.is-active:not(:empty) {
  display: block;
}

.bluezc-wonderlab-modal__gallery button {
  width: 38px;
  height: 38px;
  margin: 0 auto;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.48);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.bluezc-wonderlab-modal__thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 28px;
}

.bluezc-wonderlab-modal__thumbs button,
.bluezc-wonderlab-modal__file-thumb {
  width: 62px;
  height: 54px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #eef2ff;
  cursor: pointer;
}

.bluezc-wonderlab-modal__file-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bluezc-wonderlab-modal__thumbs button.is-active {
  border-color: #4f6cff;
}

.bluezc-wonderlab-modal__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bluezc-wonderlab-modal__thumbs svg {
  width: 26px;
  height: 26px;
  color: #253786;
}

.bluezc-wonderlab-modal__video-thumb {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #111827;
}

.bluezc-wonderlab-modal__video-thumb svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.bluezc-wonderlab-modal__content {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.7;
}

.bluezc-wonderlab-modal__content h3 {
  margin: 28px 0 12px;
  color: var(--bluezc-navy);
  font-size: 1.45rem;
}

.bluezc-wonderlab-modal__content h3:first-child {
  margin-top: 0;
}

.bluezc-wonderlab-modal__content section {
  margin: 0 0 28px;
}

.bluezc-wonderlab-modal__learn {
  display: grid;
  gap: 12px;
}

.bluezc-wonderlab-modal__learn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid #b9c8ff;
  border-radius: 8px;
  color: #374151;
  background: #f0f2ff;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bluezc-wonderlab-modal__learn a:hover {
  transform: translateY(-2px);
  border-color: #26388b;
  box-shadow: 0 12px 26px rgba(38, 56, 139, 0.16);
}

.bluezc-wonderlab-modal__learn a strong,
.bluezc-wonderlab-modal__learn a small {
  display: block;
}

.bluezc-wonderlab-modal__learn a strong {
  color: #253044;
  font-size: 1rem;
}

.bluezc-wonderlab-modal__learn a small {
  margin-top: 2px;
  color: #5f6979;
  font-size: 0.92rem;
}

.bluezc-wonderlab-modal__learn svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #253786;
}

.bluezc-modal-open {
  overflow: hidden;
}

.bluezc-wonderlab-cta {
  padding: 34px 0 64px;
  background: #ffffff;
}

.bluezc-wonderlab-cta__box {
  width: min(100%, 1020px);
  margin: 0 auto;
  padding: 42px 36px;
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(100deg, #26388b, #52bfd3);
}

.bluezc-wonderlab-cta__box h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 800;
}

.bluezc-wonderlab-cta__box p {
  margin: 0 0 30px;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.45;
}

.bluezc-wonderlab-cta__box > div {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bluezc-wonderlab-cta__primary,
.bluezc-wonderlab-cta__secondary {
  display: inline-flex;
  min-width: 170px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.bluezc-wonderlab-cta__primary {
  color: #253786;
  background: #ffffff;
}

.bluezc-wonderlab-cta__secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.bluezc-pagination {
  margin-top: 32px;
  text-align: center;
  color: #6b7280;
  font-weight: 700;
}

.bluezc-map {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-top: 20px;
  border-radius: 16px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #253786, #4abed5);
  font-weight: 800;
}

.bluezc-map span {
  display: block;
  margin-top: 8px;
  font-weight: 500;
  opacity: 0.85;
}

.bluezc-form {
  display: grid;
  gap: 16px;
}

.bluezc-form label {
  display: grid;
  gap: 7px;
  color: #374151;
  font-weight: 700;
}

.bluezc-form input,
.bluezc-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
}

.bluezc-form textarea {
  min-height: 120px;
  resize: vertical;
}

.bluezc-form button {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  color: #ffffff;
  background: #2563eb;
  font-weight: 800;
}

.bluezc-project-single {
  background: #ffffff;
}

.bluezc-project-featured {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.bluezc-project-featured img {
  display: block;
}

.bluezc-project-featured--cover img {
  width: 100%;
  height: var(--bluezc-cover-height, 430px);
  object-fit: cover;
  object-position: var(--bluezc-cover-position, center top);
}

.bluezc-project-featured--contain {
  padding: 68px 0 80px;
}

.bluezc-project-featured--contain img {
  width: var(--bluezc-cover-width, min(100% - 32px, 60rem));
  height: var(--bluezc-cover-height, 230px);
  object-fit: contain;
  object-position: var(--bluezc-cover-position, center);
  margin: 0 auto;
}

.bluezc-project-top-content {
  width: min(100% - 32px, 60rem);
  margin: -40px auto 48px;
  color: #374151;
  line-height: 1.7;
}

.bluezc-project-top-content--left {
  text-align: left;
}

.bluezc-project-top-content--center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  text-align: center;
}

.bluezc-project-top-content--right {
  text-align: right;
}

.bluezc-project-top-content img {
  max-width: 100%;
  height: auto;
}

.bluezc-project-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  width: min(100% - 32px, 60rem);
  margin: 0 auto;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.9rem;
}

.bluezc-project-breadcrumb strong,
.bluezc-project-breadcrumb a {
  color: #111827;
}

.bluezc-project-single__inner {
  width: min(100% - 32px, 60rem);
  margin: 0 auto;
  padding: 66px 0 90px;
}

.bluezc-project-title {
  margin-bottom: 42px;
  text-align: center;
}

.bluezc-project-title h1 {
  margin: 0 0 22px;
  color: transparent;
  background: linear-gradient(to right, #253786, #4abed5);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.2rem, 5vw, 3.45rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.bluezc-project-title p {
  margin: 0;
  color: #374151;
}

.bluezc-project-intro {
  display: grid;
  gap: 24px;
  margin-bottom: 44px;
  color: #111827;
  line-height: 1.75;
}

.bluezc-project-intro p {
  margin: 0;
}

.bluezc-project-section {
  margin: 54px 0;
  text-align: center;
}

.bluezc-project-section h2 {
  margin: 0 0 14px;
  color: #020617;
  font-size: 1.9rem;
  line-height: 1.15;
}

.bluezc-project-section > p {
  margin: 0 0 28px;
  color: #4b5563;
}

.bluezc-project-video {
  width: min(100%, 560px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.bluezc-project-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.bluezc-project-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.bluezc-project-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  justify-content: center;
}

.bluezc-project-gallery-strip a {
  position: relative;
  min-width: 0;
  background: #f3f4f6;
}

.bluezc-project-gallery-strip span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 3px 7px;
  color: #ffffff;
  background: #253786;
  font-size: 0.72rem;
  font-weight: 800;
}

.bluezc-project-gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bluezc-project-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  width: min(100%, 760px);
  margin: 0 auto;
}

.bluezc-project-partner-card {
  overflow: hidden;
  border: 1px solid #d7deea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bluezc-project-partner-card:hover {
  transform: translateY(-4px);
  border-color: #c8d2e4;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.bluezc-project-partner-card div {
  display: grid;
  place-items: center;
  height: 128px;
  padding: 22px;
}

.bluezc-project-partner-card img {
  max-width: 170px;
  max-height: 70px;
  object-fit: contain;
}

.bluezc-project-partner-badges {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  height: auto !important;
  min-height: 54px;
  padding: 16px 18px 0 !important;
  background: #f0f2ff;
}

.bluezc-project-partner-badges span {
  display: inline-flex;
  min-width: 80px;
  justify-content: center;
  padding: 5px 14px;
  border-radius: 999px;
  color: #253786;
  background: var(--bluezc-partner-badge-color, #dfe6ff);
  font-size: 0.72rem;
  font-weight: 800;
}

.bluezc-project-partner-card p {
  margin: 0;
  min-height: 72px;
  padding: 16px 28px 26px;
  color: #374151;
  background: #f0f2ff;
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.bluezc-project-doc-card {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid #9db3ff;
  border-radius: 6px;
  color: #253786;
  background: #f7f9ff;
  text-align: left;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.bluezc-project-doc-card:hover {
  border-color: #253786;
  background: #eef3ff;
  box-shadow: 0 16px 34px rgba(37, 55, 134, 0.18);
  transform: translateY(-2px);
}

.bluezc-project-doc-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  color: #ffffff;
  background: #253786;
}

.bluezc-project-doc-icon svg {
  width: 17px;
  height: 17px;
}

.bluezc-project-doc-text {
  display: grid;
  gap: 5px;
}

.bluezc-project-doc-text strong {
  font-size: 0.88rem;
  line-height: 1.35;
}

.bluezc-project-doc-text small {
  color: #4b5563;
  font-size: 0.78rem;
}

.bluezc-project-doc-arrow {
  color: #253786;
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.bluezc-project-doc-card:hover .bluezc-project-doc-arrow {
  transform: translateX(4px);
}

.bluezc-project-details-box {
  margin-top: 54px;
  padding: 26px 34px;
  background: #f8fafc;
}

.bluezc-project-details-box h2 {
  margin: 0 0 26px;
  color: #020617;
  font-size: 1.45rem;
}

.bluezc-project-details-box > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.bluezc-project-details-box dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.bluezc-project-details-box dt {
  color: #020617;
  font-weight: 800;
}

.bluezc-project-details-box dd {
  margin: 0 0 12px;
  color: #374151;
}

.bluezc-project-back {
  display: table;
  margin: 52px auto 0;
  color: #253786;
  font-weight: 800;
}

.bluezc-project-back::before {
  content: "<- ";
}

.bluezc-project-news-cta {
  width: 100vw;
  margin: 78px 50% -90px;
  padding: 70px 24px;
  transform: translateX(-50%);
  text-align: center;
  background: #eff9fd;
}

.bluezc-project-news-cta h2 {
  margin: 0 0 16px;
  color: transparent;
  background: linear-gradient(to right, #253786, #4abed5);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.4rem;
}

.bluezc-project-news-cta p {
  width: min(100%, 520px);
  margin: 0 auto 34px;
  color: #4b5563;
}

.bluezc-project-news-cta a {
  display: inline-flex;
  padding: 12px 22px;
  border-radius: 999px;
  color: #ffffff;
  background: #253786;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .bluezc-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .bluezc-nav {
    position: absolute;
    top: 90px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--bluezc-shadow);
  }

  .bluezc-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .bluezc-nav.is-open {
    display: flex;
  }

  .bluezc-nav a {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .bluezc-nav a:hover {
    background: #f3f4f6;
  }

  .bluezc-card-grid,
  .bluezc-spotlight,
  .bluezc-team-grid,
  .bluezc-news-grid,
  .bluezc-split,
  .bluezc-contact-grid {
    grid-template-columns: 1fr;
  }

  .bluezc-project-grid {
    grid-template-columns: repeat(var(--bluezc-project-tablet-columns, 1), 1fr);
  }

  .bluezc-news-filters {
    grid-template-columns: 1fr;
  }

  .bluezc-news-category-row {
    padding-right: 0;
  }

  .bluezc-news-result-count {
    position: static;
    margin-top: 18px;
    text-align: right;
  }

  .bluezc-contact-location-card,
  .bluezc-contact-support-grid {
    grid-template-columns: 1fr;
  }

  .bluezc-carbon-card--blue {
    margin-top: 0;
  }

  .bluezc-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bluezc-container {
    width: min(100% - 24px, 1280px);
  }

  .bluezc-header__inner {
    height: 82px;
  }

  .bluezc-logo img,
  .bluezc-logo svg {
    height: 48px;
  }

  .bluezc-learn span {
    display: none;
  }

  .bluezc-main {
    padding-top: 82px;
  }

  .bluezc-nav {
    top: 82px;
  }

  .bluezc-carousel,
  .bluezc-hero {
    height: calc(100vh - 82px);
    min-height: 560px;
  }

  .bluezc-wonderlab-hero {
    min-height: min(var(--bluezc-wonderlab-hero-height, 420px), 520px);
  }

  .bluezc-slide__content {
    padding-top: 150px;
  }

  .bluezc-slide h1 {
    font-size: clamp(3.2rem, 18vw, 4.5rem);
  }

  .bluezc-slide p {
    font-size: 1.1rem;
    letter-spacing: 0.03em;
  }

  .bluezc-hero-button {
    margin-top: 34px;
  }

  .bluezc-arrow {
    display: none;
  }

  .bluezc-section {
    padding: 64px 0;
  }

  .bluezc-carbon-card,
  .bluezc-mission-card,
  .bluezc-news-panel,
  .bluezc-spotlight-body,
  .bluezc-cta__box {
    padding: 24px;
  }

  .bluezc-footer__grid {
    grid-template-columns: 1fr;
  }

  .bluezc-project-grid {
    grid-template-columns: 1fr;
  }

  .bluezc-wonderlab-approach {
    padding: 42px 0 32px;
  }

  .bluezc-wonderlab-approach-box {
    padding: 34px 22px;
  }

  .bluezc-wonderlab-info-grid,
  .bluezc-wonderlab-card-grid {
    grid-template-columns: 1fr;
  }

  .bluezc-wonderlab-card img {
    height: 260px;
  }

  .bluezc-wonderlab-modal {
    padding: 18px 12px;
  }

  .bluezc-wonderlab-modal__dialog {
    padding: 28px 16px 32px;
  }

  .bluezc-wonderlab-modal__dialog h2 {
    margin: 0 42px 22px;
    font-size: 1.65rem;
  }

  .bluezc-wonderlab-modal__gallery {
    grid-template-columns: 36px 1fr 36px;
    gap: 6px;
  }

  .bluezc-wonderlab-modal__gallery > div {
    height: 300px;
  }

  .bluezc-wonderlab-cta__box {
    padding: 34px 22px;
  }

  .bluezc-wonderlab-cta__box h2 {
    font-size: 1.6rem;
  }

  .bluezc-team-card img {
    height: 320px;
  }

  .bluezc-project-single__inner {
    width: min(100% - 24px, 760px);
    padding-top: 48px;
  }

  .bluezc-project-featured {
    width: 100%;
    padding: 0;
  }

  .bluezc-project-featured--cover img {
    height: var(--bluezc-cover-mobile-height, 260px);
  }

  .bluezc-project-featured--contain {
    padding: 40px 0 54px;
  }

  .bluezc-project-featured--contain img {
    height: var(--bluezc-cover-mobile-height, 180px);
  }

  .bluezc-project-top-content {
    width: min(100% - 24px, 60rem);
    margin-top: -24px;
  }

  .bluezc-projects-controls,
  .bluezc-projects-sort,
  .bluezc-projects-search {
    flex-direction: column;
    align-items: stretch;
  }

  .bluezc-projects-controls {
    margin-top: -52px;
  }

  .bluezc-project-breadcrumb {
    width: min(100% - 24px, 60rem);
  }

  .bluezc-gallery-modal {
    padding: 16px;
  }

  .bluezc-gallery-modal__close {
    top: 4px;
    right: 4px;
  }

  .bluezc-gallery-modal__arrow {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }

  .bluezc-gallery-modal__arrow--prev {
    left: 4px;
  }

  .bluezc-gallery-modal__arrow--next {
    right: 4px;
  }

  .bluezc-project-grid .bluezc-project-card > .bluezc-project-card__link > div {
    padding: 30px 24px 24px;
  }

  .bluezc-project-gallery-strip,
  .bluezc-project-partners-grid,
  .bluezc-project-details-box > div {
    grid-template-columns: 1fr;
  }

  .bluezc-news-hero {
    min-height: 330px;
  }

  .bluezc-news-hero h1 {
    font-size: clamp(3.4rem, 18vw, 4.6rem);
  }

  .bluezc-news-type-filter,
  .bluezc-news-sort {
    width: 100%;
  }

  .bluezc-news-type-filter button {
    flex: 1;
    min-width: 0;
  }

  .bluezc-news-sort {
    flex-wrap: wrap;
  }

  .bluezc-news-sort label,
  .bluezc-news-sort select {
    flex: 1;
    min-width: 0;
  }

  .bluezc-news-card__media {
    height: 220px;
  }

  .bluezc-news-card__body {
    min-height: 0;
    padding: 24px !important;
  }

  .bluezc-news-card__meta,
  .bluezc-news-card__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .bluezc-news-cta__box {
    padding: 38px 22px;
  }

  .bluezc-contact-hero {
    min-height: 330px;
  }

  .bluezc-about-hero {
    min-height: 330px;
  }

  .bluezc-contact-hero h1 {
    font-size: clamp(3.4rem, 18vw, 4.6rem);
  }

  .bluezc-about-hero h1 {
    font-size: clamp(3.4rem, 18vw, 4.6rem);
  }

  .bluezc-about-what__image {
    height: min(var(--bluezc-about-what-height, 360px), 360px);
    margin-bottom: 38px;
  }

  .bluezc-about-mission__panel {
    padding: 34px 22px;
  }

  .bluezc-about-feature-grid,
  .bluezc-about-team .bluezc-team-grid {
    grid-template-columns: 1fr;
  }

  .bluezc-about-team-card > img,
  .bluezc-about-bio-modal__dialog > img {
    height: 300px;
  }

  .bluezc-about-bio-modal {
    padding: 62px 14px 18px;
  }

  .bluezc-contact-section {
    padding: 42px 0;
  }

  .bluezc-contact-location-card aside,
  .bluezc-contact-map,
  .bluezc-contact-support-grid article,
  .bluezc-contact-info,
  .bluezc-contact-form-card {
    padding: 24px;
  }

  .bluezc-contact-map iframe,
  .bluezc-contact-map__empty {
    height: 260px;
  }

.bluezc-contact-iban button {
    position: static;
    margin-top: 14px;
  }
}

.bluezc-cookie-toggle,
.bluezc-scroll-top {
  position: fixed;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.bluezc-cookie-toggle {
  left: 20px;
  bottom: 20px;
  color: #ffffff;
  background: #253786;
  box-shadow: 0 12px 28px rgba(37, 55, 134, 0.28);
}

.bluezc-scroll-top {
  right: 24px;
  bottom: 24px;
  color: #ffffff;
  background: #d4d7dc;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
}

.bluezc-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.bluezc-cookie-toggle:hover,
.bluezc-scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.bluezc-cookie-toggle svg,
.bluezc-scroll-top svg {
  width: 22px;
  height: 22px;
}

.bluezc-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
}

.bluezc-cookie-modal.is-open {
  display: flex;
}

.bluezc-cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.54);
}

.bluezc-cookie-modal__dialog {
  position: relative;
  width: min(100%, 448px);
  margin-left: 76px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.25);
}

.bluezc-cookie-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.bluezc-cookie-modal__head h2 {
  margin: 0;
  color: #1f2937;
  font-size: 1.05rem;
}

.bluezc-cookie-modal__head button {
  border: 0;
  color: #9ca3af;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.bluezc-cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.bluezc-cookie-option--locked {
  border-color: transparent;
  background: #f9fafb;
}

.bluezc-cookie-option h3 {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: 1rem;
}

.bluezc-cookie-option p {
  margin: 0;
  color: #4b5563;
  line-height: 1.45;
}

.bluezc-cookie-option label {
  position: relative;
  flex: 0 0 auto;
  display: block;
  width: 50px;
  height: 24px;
}

.bluezc-cookie-option input {
  position: absolute;
  opacity: 0;
}

.bluezc-cookie-option span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
}

.bluezc-cookie-option span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 180ms ease;
}

.bluezc-cookie-option input:checked + span {
  background: #253786;
}

.bluezc-cookie-option input:checked + span::after {
  transform: translateX(24px);
}

.bluezc-cookie-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.bluezc-cookie-modal__actions button {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.bluezc-cookie-save {
  border: 0;
  color: #ffffff;
  background: #253786;
}

.bluezc-cookie-accept {
  border: 1px solid #d1d5db;
  color: #374151;
  background: #ffffff;
}

@media (max-width: 700px) {
  .bluezc-cookie-modal {
    align-items: flex-end;
    padding: 14px;
  }

  .bluezc-cookie-modal__dialog {
    margin-left: 0;
  }

  .bluezc-cookie-toggle {
    left: 14px;
    bottom: 14px;
  }

  .bluezc-scroll-top {
    right: 14px;
    bottom: 14px;
  }
}

.bluezc-spotlight-media--cover {
  padding: 0;
  background: #e5edf4;
}

.bluezc-spotlight-media--cover img {
  object-fit: cover;
}

.bluezc-home-news .bluezc-heading p {
  width: min(100%, 820px);
}

.bluezc-home-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.bluezc-home-news-panel {
  min-height: 470px;
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--bluezc-shadow);
}

.bluezc-home-news-panel h3 {
  margin: 0 0 26px;
  color: var(--bluezc-cyan);
  font-size: 1.45rem;
  font-weight: 800;
}

.bluezc-home-news-list {
  display: grid;
  gap: 18px;
}

.bluezc-home-news-list--scroll {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-color: #9ca3af transparent;
  scrollbar-width: thin;
}

.bluezc-home-news-item {
  display: block;
  padding: 16px;
  border-radius: 8px;
  color: inherit;
  background: #f8fafc;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.bluezc-home-news-item:hover {
  background: #eef6ff;
  transform: translateY(-2px);
}

.bluezc-home-news-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #5f6979;
  font-size: 0.84rem;
}

.bluezc-home-news-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}


.bluezc-home-news-source img,
.bluezc-home-news-source svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.bluezc-home-news-source .bluezc-news-source-icon--youtube {
  color: #ff0033;
}

.bluezc-home-news-meta time {
  white-space: nowrap;
}

.bluezc-home-news-arrow,
.bluezc-home-news-doc {
  width: 18px;
  height: 18px;
  color: #253786;
  font-weight: 800;
}

.bluezc-home-news-doc {
  position: relative;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.bluezc-home-news-doc::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: #f8fafc;
}

.bluezc-home-news-item h4 {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 800;
}

.bluezc-home-news-item p {
  margin: 6px 0 0;
  color: #4b5563;
  font-size: 0.84rem;
  line-height: 1.45;
}

.bluezc-home-news-actions {
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .bluezc-home-news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bluezc-home-news-panel {
    min-height: auto;
    padding: 24px;
  }

  .bluezc-home-news-meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .bluezc-home-news-arrow,
  .bluezc-home-news-doc {
    display: none;
  }
}

.bluezc-simple-hero {
  padding: 84px 0;
  text-align: center;
}

.bluezc-simple-hero--soft {
  background: linear-gradient(135deg, #eef9fd, #effdf7);
}

.bluezc-simple-hero--blue {
  color: #ffffff;
  background: #253786;
}

.bluezc-simple-hero h1 {
  margin: 0 0 18px;
  color: inherit;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.bluezc-simple-hero p {
  width: min(100%, 760px);
  margin: 0 auto;
  color: inherit;
  opacity: 0.82;
  font-size: 1.24rem;
  line-height: 1.55;
}

.bluezc-legal-section {
  padding: 72px 0 86px;
  background: #f8fafc;
}

.bluezc-legal-container {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
}

.bluezc-legal-card,
.bluezc-faq-item,
.bluezc-legal-cta {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--bluezc-shadow);
}

.bluezc-legal-card {
  padding: clamp(28px, 5vw, 54px);
}

.bluezc-legal-lead {
  margin: 0 0 38px;
  color: #374151;
  font-size: 1.24rem;
  line-height: 1.72;
}

.bluezc-legal-content {
  display: grid;
  gap: 34px;
}

.bluezc-legal-content section {
  padding-bottom: 2px;
}

.bluezc-legal-content h2,
.bluezc-legal-contact h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 1.55rem;
  line-height: 1.25;
}

.bluezc-legal-content p,
.bluezc-legal-contact p {
  margin: 0;
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.72;
}

.bluezc-legal-contact {
  margin-top: 46px;
  padding: 24px;
  border-top: 1px solid #dbeafe;
  border-radius: 8px;
  background: #eff6ff;
}

.bluezc-legal-contact a {
  color: #253786;
  font-weight: 800;
  text-decoration: underline;
}

.bluezc-faq-list {
  display: grid;
  gap: 16px;
}

.bluezc-faq-item {
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.bluezc-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 26px;
  color: #111827;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}

.bluezc-faq-item summary::-webkit-details-marker {
  display: none;
}

.bluezc-faq-item summary strong {
  color: #6b7280;
  transition: transform 180ms ease;
}

.bluezc-faq-item[open] summary strong {
  transform: rotate(180deg);
}

.bluezc-faq-item div {
  padding: 0 26px 24px;
}

.bluezc-faq-item p {
  margin: 0;
  color: #4b5563;
  line-height: 1.72;
}

.bluezc-legal-cta {
  margin-top: 48px;
  padding: clamp(30px, 5vw, 46px);
  text-align: center;
  color: #ffffff;
  background: linear-gradient(90deg, #253786, #4abed5);
}

.bluezc-legal-cta h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.55rem);
}

.bluezc-legal-cta p {
  width: min(100%, 640px);
  margin: 0 auto 28px;
  color: #eaf8fb;
  font-size: 1.16rem;
  line-height: 1.6;
}

.bluezc-legal-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 8px;
  color: #253786;
  background: #ffffff;
  font-weight: 800;
}

@media (max-width: 640px) {
  .bluezc-simple-hero {
    padding: 60px 0;
  }

  .bluezc-legal-section {
    padding: 48px 0 64px;
  }

  .bluezc-faq-item summary {
    padding: 20px;
  }

  .bluezc-faq-item div {
    padding: 0 20px 20px;
  }
}