/* =========================================================
   INTERKULTURELLE ZENTREN KÖLN — HOMEPAGE
   Single editorial composition for Elementor

   Spacing system: 24 / 48 / 72 / 96px
   Requires global-clean.css to load first.
========================================================= */

/* ---------------------------------------------------------
   PAGE TOKENS
--------------------------------------------------------- */

body.home,
.iz-homepage {
  --home-space-1: var(--iz-space-1);
  --home-space-2: var(--iz-space-2);
  --home-space-3: var(--iz-space-3);
  --home-space-4: var(--iz-space-4);

  --home-ink: var(--iz-black);
  --home-text: var(--iz-text);
  --home-muted: var(--iz-muted);
  --home-red: var(--iz-red);
  --home-yellow: var(--iz-yellow);
  --home-green: var(--iz-green);
  --home-paper: var(--iz-white);
  --home-soft: var(--iz-soft);
  --home-line: var(--iz-border);

  --home-radius: var(--iz-radius-lg);
  --home-radius-sm: var(--iz-radius-md);
  --home-shadow: var(--iz-shadow-md);
  --home-shadow-hover: 0 24px 64px rgba(17, 17, 17, .12);
  --home-container: var(--iz-page-width);
  --home-gutter: var(--iz-page-gutter);

  color: var(--home-text);
  background: var(--home-paper);
}

.iz-hero *,
.iz-map *,
.iz-quick-section *,
.iz-news *,
.iz-diversity-section *,
.iz-film *,
.iz-hero *::before,
.iz-map *::before,
.iz-quick-section *::before,
.iz-news *::before,
.iz-diversity-section *::before,
.iz-film *::before,
.iz-hero *::after,
.iz-map *::after,
.iz-quick-section *::after,
.iz-news *::after,
.iz-diversity-section *::after,
.iz-film *::after {
  box-sizing: border-box;
}

.iz-hero-inner,
.iz-map-inner,
.iz-quick-inner,
.iz-news-inner,
.iz-diversity-inner,
.iz-film-inner {
  width: min(var(--home-container), calc(100% - var(--home-gutter)));
  margin-inline: auto;
}

:is(.iz-hero, .iz-map, .iz-quick-section, .iz-news, .iz-diversity-section, .iz-film)
  :is(.elementor-heading-title, h1, h2, h3) {
  text-wrap: balance;
}

:is(.iz-hero, .iz-map, .iz-quick-section, .iz-news, .iz-diversity-section, .iz-film)
  :is(p, li) {
  text-wrap: pretty;
}

/* ---------------------------------------------------------
   SHARED EDITORIAL ELEMENTS
--------------------------------------------------------- */

:is(.iz-hero, .iz-map, .iz-quick-section, .iz-news, .iz-diversity-section, .iz-film) :is(
  .iz-map-title,
  .iz-news-title,
  .iz-film-title
) .elementor-heading-title {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 850;
}

:is(.iz-hero, .iz-map, .iz-quick-section, .iz-news, .iz-diversity-section, .iz-film) :is(
  .iz-map-text,
  .iz-film-text,
  .iz-diversity-text
) :is(p, .elementor-widget-container) {
  color: var(--home-text);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 450;
}

:is(.iz-hero, .iz-map, .iz-quick-section, .iz-news, .iz-diversity-section, .iz-film)
  :is(.elementor-button, .iz-quick-card-link, .iz-service-links a) {
  -webkit-tap-highlight-color: transparent;
}

:is(.iz-hero, .iz-map, .iz-quick-section, .iz-news, .iz-diversity-section, .iz-film)
  :is(.elementor-button, a):focus-visible {
  outline: 3px solid var(--home-yellow);
  outline-offset: 4px;
}

/* ---------------------------------------------------------
   HERO — LEAD STORY + SEARCH DESK
--------------------------------------------------------- */

.iz-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--home-soft);
  background-position: center;
  background-size: cover;
  border-bottom: 6px solid var(--home-red);
}

.iz-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .98) 0%,
    rgba(255, 255, 255, .94) 44%,
    rgba(255, 255, 255, .62) 68%,
    rgba(255, 255, 255, .22) 100%
  );
}

.iz-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: center;
  gap: var(--home-space-4);
  padding-block: var(--home-space-3);
}

.iz-hero-content {
  max-width: 720px;
}

.iz-hero-content .elementor-heading-title {
  max-width: 11ch;
  margin: 0 0 var(--home-space-2);
  color: var(--home-ink);
  font-size: var(--iz-h1);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 850;
}

.iz-hero-content .iz-yellow {
  color: var(--home-red);
  text-shadow: none;
}

.iz-hero-text {
  max-width: 58ch;
  margin-bottom: var(--home-space-2);
  padding-left: var(--home-space-1);
  border-left: 5px solid var(--home-red);
}

.iz-hero-text :is(p, .elementor-widget-container) {
  margin: 0;
  color: var(--home-text);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  font-weight: 600;
}

/* Primary button */

.iz-btn-city :is(.elementor-button, a) {
  min-height: 52px;
  padding: 0 var(--home-space-1) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--home-red) !important;
  color: var(--home-paper) !important;
  border: 1px solid var(--home-red) !important;
  border-radius: var(--home-radius-sm) !important;
  box-shadow: none;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  transition: background .2s ease, border-color .2s ease;
}

.iz-btn-city :is(.elementor-button, a)::after {
  content: "→";
  font-size: 17px;
  transition: transform .2s ease;
}

.iz-btn-city :is(.elementor-button, a):hover {
  background: #b9000b !important;
  border-color: #b9000b !important;
  box-shadow: none;
  transform: none;
}

.iz-btn-city :is(.elementor-button, a):hover::after {
  transform: translateX(4px);
}

/* Search card */

.iz-hero-search {
  padding: var(--home-space-2);
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--home-line);
  border-top: 8px solid var(--home-red);
  border-radius: var(--home-radius);
  box-shadow: var(--iz-shadow-sm);
  backdrop-filter: blur(12px);
}

.iz-hero-search .elementor-heading-title {
  margin: 0 0 var(--home-space-1);
  color: var(--home-ink);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 850;
}

.iz-hero-search form {
  position: relative;
}

.iz-hero-search .e-search-input-wrapper {
  width: 100%;
}

.iz-hero-search :is(input[type="search"], input[type="text"], .e-search-input) {
  width: 100%;
  height: 56px;
  padding: 0 64px 0 18px !important;
  background: var(--home-paper) !important;
  color: var(--home-ink) !important;
  border: 1px solid #cfcfcf !important;
  border-radius: var(--home-radius-sm) !important;
  box-shadow: none !important;
  font-size: 15px !important;
}

.iz-hero-search input::placeholder {
  color: var(--home-muted);
  opacity: 1;
}

.iz-hero-search :is(button, .e-search-submit) {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0 !important;
  background: var(--home-red) !important;
  color: var(--home-paper) !important;
  border: 0 !important;
  border-radius: 8px !important;
  font-size: 0 !important;
}

.iz-hero-search :is(button, .e-search-submit)::before {
  font-size: 18px;
}

.iz-hero-search :is(button, .e-search-submit) span {
  display: none !important;
}

.iz-service-links {
  margin-top: var(--home-space-1);
}

.iz-service-links .elementor-nav-menu {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

.iz-service-links :is(a, .elementor-item) {
  min-height: 32px;
  padding: 8px 12px !important;
  display: inline-flex !important;
  align-items: center;
  background: var(--home-soft) !important;
  color: var(--home-text) !important;
  border: 1px solid var(--home-line) !important;
  border-radius: var(--home-radius-sm) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.iz-service-links :is(a, .elementor-item):hover {
  background: var(--home-red) !important;
  color: var(--home-paper) !important;
  border-color: var(--home-red) !important;
}

/* ---------------------------------------------------------
   MAP — EDITORIAL FEATURE
--------------------------------------------------------- */

.iz-map {
  padding-block: var(--home-space-4);
  background: var(--home-paper);
}

.iz-map-inner {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.4fr);
  grid-template-areas:
    "title map"
    "text  map";
  grid-template-rows: auto auto;
  align-items: start;
  align-content: center;
  column-gap: var(--home-space-2);
  row-gap: 0;
  padding: var(--home-space-2);
  background: #f4f8f1;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
}

.iz-map-title {
  grid-area: title;
  align-self: end;
  transform: translateY(36px);
}

.iz-map-text {
  grid-area: text;
  transform: translateY(36px);
}

.iz-map-button {
  grid-area: text;
  align-self: end;
}

.iz-map-frame {
  grid-area: map;
}

.iz-map-title .elementor-heading-title {
  max-width: 12ch;
  margin-bottom: var(--home-space-1) !important;
}

.iz-map-text {
  max-width: 48ch;
}

.iz-map-button {
  margin-top: var(--home-space-1);
}

.iz-map-button .elementor-button {
  min-height: 48px;
  padding: 0 20px !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--home-red) !important;
  color: var(--home-paper) !important;
  border: 1px solid var(--home-red) !important;
  border-radius: var(--home-radius-sm) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  transition: background .2s ease, border-color .2s ease;
}

.iz-map-button .elementor-button::after {
  content: "→";
}

.iz-map-button .elementor-button:hover {
  background: var(--home-red) !important;
  border-color: var(--home-red) !important;
  transform: none;
}

.iz-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 360px;
  overflow: hidden;
  background: #e9ece8;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-sm);
}

.iz-map-frame :is(
  .elementor-widget-shortcode,
  .elementor-widget-container,
  [id^="google_map_easy"],
  [id*="google_map_easy"],
  [id^="gmpMap"],
  [id*="gmpMap"],
  .gmp_map_opts,
  .gmpMapDetailsContainer,
  .gmp_map,
  .gmpMap,
  .gmp_MapPreview,
  .gmp_MapPreview > div,
  .gm-style,
  .gm-style > div
) {
  width: 100% !important;
  height: 100% !important;
  min-height: 360px !important;
}

/* ---------------------------------------------------------
   QUICK ACCESS — INDEX STRIP
--------------------------------------------------------- */

.iz-quick-section {
  padding-block: var(--home-space-3);
  background: var(--home-soft);
  border-block: 1px solid var(--home-line);
}

.iz-quick-title .elementor-heading-title,
.iz-quick-inner > .elementor-widget-heading .elementor-heading-title {
  margin: 0 0 var(--home-space-1) !important;
  color: var(--home-ink) !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  letter-spacing: -.02em;
  font-weight: 850 !important;
}

.iz-quick-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(240px, 1.5fr) !important;
  gap: 12px !important;
}

.iz-quick-link {
  min-height: 168px;
  overflow: hidden;
  background: var(--home-paper);
  border: 1px solid var(--home-line);
  border-top: 4px solid var(--home-red);
  border-radius: var(--home-radius-sm);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.iz-quick-link:hover {
  border-color: var(--home-red);
  box-shadow: 0 12px 30px rgba(17, 17, 17, .08);
  transform: none;
}

.iz-quick-card-link {
  width: 100%;
  height: 100%;
  padding: var(--home-space-1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--home-ink);
  text-decoration: none;
}

.iz-quick-card-link i {
  color: var(--home-red);
  font-size: 30px;
}

.iz-quick-card-link span {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.iz-quick-card-link span::after,
.iz-map-bottom::after {
  content: "→";
  flex-shrink: 0;
  transition: transform .2s ease;
}

.iz-quick-link:hover :is(.iz-quick-card-link, .iz-map-bottom) {
  color: var(--home-red);
}

.iz-quick-link:hover :is(.iz-quick-card-link span, .iz-map-bottom)::after {
  transform: translateX(4px);
}

.iz-quick-card-map {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.iz-map-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.iz-map-top i {
  flex-shrink: 0;
  color: var(--home-green);
  font-size: 34px;
}

.iz-map-copy {
  max-width: 24ch;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.iz-map-bottom {
  margin-left: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-red);
  font-size: 14px;
  font-weight: 800;
}

/* ---------------------------------------------------------
   NEWS — LEAD STORY + NEWS DESK
--------------------------------------------------------- */

.iz-news {
  padding-block: var(--home-space-4);
  background: var(--home-paper);
}

.iz-news-header {
  position: relative;
  margin-bottom: var(--home-space-2);
  padding-bottom: var(--home-space-1);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--home-space-1);
  border-bottom: 2px solid var(--home-ink);
}

.iz-news-header::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 72px;
  height: 5px;
  content: "";
  background: var(--home-red);
}

.iz-news-all .elementor-button {
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: var(--home-red) !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

.iz-news-all .elementor-button::after {
  content: "→";
}

.iz-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 1fr);
  align-items: stretch;
  gap: var(--home-space-1);
}

.iz-news-list {
  height: 100% !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--home-paper);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
}

.iz-news-item {
  flex: 1;
}

.weiter-container {
  height: 100% !important;
  padding-top: var(--home-space-1);
  align-items: center;
}

/* Normalize the global news-loop cards inside this composition. */
.iz-news-feature {
  position: relative;
  height: auto !important;
  min-height: 456px;
  display: block !important;
  overflow: hidden;
  border-radius: var(--home-radius);
}

.iz-news-feature > .e-con-inner,
.iz-news-feature > .elementor-container {
  position: static !important;
  width: 100% !important;
  min-height: 456px;
}

.iz-news-feature-image {
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  z-index: 1;
  width: 46% !important;
  max-width: 46% !important;
  height: 100% !important;
  min-height: 456px !important;
  overflow: hidden;
}

.iz-news-feature-image .elementor-widget-container,
.iz-news-feature-image a,
.iz-news-feature-image picture {
  width: 100%;
  height: 100% !important;
  display: block;
}

.iz-news-feature-image img {
  width: 100%;
  height: 100% !important;
  min-height: 100% !important;
  aspect-ratio: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.iz-news-feature-content {
  position: relative;
  z-index: 2;
  width: 54% !important;
  max-width: 54% !important;
  min-width: 0 !important;
  min-height: 456px;
  margin-left: 46% !important;
  padding: var(--home-space-2);
}

.iz-news-feature-title .elementor-heading-title {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  font-weight: 800;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.iz-news-item {
  padding: var(--home-space-1);
}

.iz-news-item-title .elementor-heading-title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 750;
}

/* ---------------------------------------------------------
   DIVERSITY — MANIFESTO SPREAD
--------------------------------------------------------- */

.iz-diversity-section {
  padding-block: var(--home-space-4);
  overflow: hidden;
  background: var(--home-ink);
  color: var(--home-paper);
}

.iz-diversity-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  grid-template-areas:
    "content media"
    "stats   stats";
  gap: var(--home-space-3);
  align-items: center;
}

.iz-diversity-content {
  grid-area: content;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.iz-diversity-kicker .elementor-heading-title {
  margin: 0;
  color: var(--home-yellow);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 850;
}

.iz-diversity-kicker-line,
.iz-diversity-kicker-line > .elementor-widget-container {
  width: 72px !important;
  max-width: 72px !important;
  height: 4px !important;
  min-height: 4px !important;
  padding: 0 !important;
  display: block !important;
  flex: 0 0 4px !important;
  background: var(--home-red) !important;
}

.iz-diversity-kicker-line {
  margin: 20px 0 32px !important;
}

.iz-diversity-kicker-line > .elementor-widget-container {
  margin: 0 !important;
}

.iz-diversity-title .elementor-heading-title {
  max-width: 8ch;
  margin: 0;
  color: var(--home-paper);
  font-size: clamp(52px, 6vw, 84px);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 850;
}

.iz-diversity-title-line,
.iz-diversity-title-line > .elementor-widget-container {
  width: 96px !important;
  max-width: 96px !important;
  height: 6px !important;
  min-height: 6px !important;
  padding: 0 !important;
  display: block !important;
  flex: 0 0 6px !important;
  background: var(--home-yellow) !important;
}

.iz-diversity-title-line {
  margin: 28px 0 !important;
}

.iz-diversity-title-line > .elementor-widget-container {
  margin: 0 !important;
}

.iz-diversity-text {
  max-width: 58ch;
}

.iz-diversity-text :is(p, .elementor-widget-container) {
  color: rgba(255, 255, 255, .82) !important;
}

.iz-diversity-text p + p {
  margin-top: var(--home-space-1);
}

.iz-diversity-text a {
  color: var(--home-yellow);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.iz-diversity-text a[href$=".pdf"],
.iz-diversity-download :is(a, .elementor-button) {
  margin-top: var(--home-space-1);
  padding: 10px 14px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: var(--home-yellow) !important;
  border: 1px solid var(--home-yellow) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.iz-diversity-text a[href$=".pdf"]::before,
.iz-diversity-download :is(a, .elementor-button)::before {
  content: "↓";
}

.iz-diversity-media {
  grid-area: media;
  position: relative;
  min-width: 0;
}

.iz-diversity-media::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 55%;
  height: 45%;
  background: var(--home-yellow);
  border-radius: var(--home-radius);
}

.iz-diversity-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #242424;
  border-radius: var(--home-radius);
}

.iz-diversity-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center;
}

.iz-diversity-stats {
  grid-area: stats;
  grid-column: 1 / -1;
  margin-top: var(--home-space-2);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  padding: 0 !important;
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.iz-diversity-stats > .e-con-inner,
.iz-diversity-stats > .elementor-container {
  display: contents;
  background: transparent !important;
}

.iz-diversity-stat {
  position: relative;
  padding: var(--home-space-1) 16px 0;
  background: transparent !important;
  text-align: left;
}

.iz-diversity-stat > .e-con-inner,
.iz-diversity-stat .elementor-widget-container {
  background: transparent !important;
}

.iz-diversity-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: var(--home-space-1);
  right: 0;
  width: 1px;
  height: calc(100% - var(--home-space-1));
  background: rgba(255, 255, 255, .16);
}

.iz-diversity-stat .elementor-icon {
  width: 40px;
  height: 40px;
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--home-yellow);
  background: rgba(255, 229, 0, .12);
  border-radius: 999px;
  font-size: 17px;
}

.iz-diversity-stat .elementor-icon :is(svg, i) {
  color: var(--home-yellow) !important;
  fill: var(--home-yellow) !important;
}

.iz-diversity-stat .elementor-heading-title {
  max-width: 14ch;
  margin: 0 0 8px;
  color: var(--home-paper);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.iz-diversity-stat :is(p, .elementor-widget-container) {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  line-height: 1.5;
}

/* ---------------------------------------------------------
   IMAGE FILM — CLOSING FEATURE
--------------------------------------------------------- */

.iz-film {
  padding-block: var(--home-space-4);
  background: var(--home-paper);
}

.iz-film-inner {
  padding: var(--home-space-2);
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.5fr);
  align-items: stretch;
  gap: var(--home-space-2);
  background: #fff9d7;
  border: 1px solid rgba(255, 229, 0, .6);
  border-radius: var(--home-radius);
}

.iz-film-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.iz-film-kicker .elementor-heading-title {
  margin: 0 0 var(--home-space-1);
  color: var(--home-red);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 850;
}

.iz-film-title .elementor-heading-title {
  max-width: 10ch;
  margin-bottom: var(--home-space-1) !important;
}

.iz-film-text {
  max-width: 44ch;
  flex: 1;
}

.iz-film-button {
  margin-top: var(--home-space-2);
  padding-top: var(--home-space-1);
  border-top: 1px solid rgba(17, 17, 17, .14);
}

.iz-film-button .elementor-button {
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent !important;
  color: var(--home-ink) !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.iz-film-button .elementor-button::before {
  content: "▶";
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--home-ink);
  color: var(--home-paper);
  border-radius: 50%;
  font-size: 11px;
}

.iz-film-button .elementor-button:hover {
  color: var(--home-red) !important;
}

.iz-film-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--home-ink);
  border-radius: var(--home-radius-sm);
}

.iz-film-image img,
.iz-film-media :is(img, iframe, video) {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.iz-film-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(var(--iz-green-dark-rgb), .34), rgba(17, 17, 17, .04));
}

.iz-film-play {
  position: relative;
  z-index: 2;
}

.iz-film-play .elementor-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-paper);
  color: var(--home-ink);
  border-radius: 50%;
  box-shadow: var(--home-shadow);
  transition: transform .2s ease;
}

.iz-film-play .elementor-icon:hover {
  transform: scale(1.06);
}

/* ---------------------------------------------------------
   RESPONSIVE COMPOSITION
--------------------------------------------------------- */

@media (max-width: 1024px) {
  :root {
    --home-gutter: 32px;
  }

  .iz-hero {
    min-height: auto;
  }

  .iz-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
    gap: var(--home-space-2);
  }

  .iz-diversity-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "media"
      "stats";
    gap: var(--home-space-2);
  }

  .iz-diversity-title .elementor-heading-title {
    max-width: 11ch;
  }

  .iz-diversity-media {
    width: 100%;
  }

  .iz-diversity-image img {
    aspect-ratio: 16 / 9;
  }

  .iz-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .iz-quick-link-wide {
    grid-column: 1 / -1;
  }

  .iz-news-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  }

  .iz-diversity-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iz-diversity-stat:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --home-gutter: 28px;
    --home-space-3: 48px;
    --home-space-4: 72px;
  }

  .iz-hero {
    border-bottom-width: 8px;
    background-position: 62% center;
  }

  .iz-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .82));
  }

  .iz-hero-inner,
  .iz-map-inner,
  .iz-news-grid,
  .iz-diversity-inner,
  .iz-film-inner {
    grid-template-columns: 1fr;
  }

  .iz-map-inner {
    grid-template-areas:
      "title"
      "text"
      "map";
    grid-template-rows: auto;
    align-content: start;
    gap: var(--home-space-1);
  }

  .iz-map-title,
  .iz-map-text {
    transform: none;
  }

  .iz-hero-inner {
    padding-block: var(--home-space-2);
  }

  .iz-hero-content .elementor-heading-title {
    max-width: 12ch;
    margin-bottom: var(--home-space-1);
    font-size: clamp(42px, 13vw, 68px);
  }

  .iz-hero-text {
    margin-bottom: var(--home-space-1);
  }

  .iz-hero-search,
  .iz-map-inner,
  .iz-film-inner {
    padding: var(--home-space-1);
  }

  .iz-map-frame,
  .iz-map-frame :is(
    .elementor-widget-shortcode,
    .elementor-widget-container,
    [id^="google_map_easy"],
    [id*="google_map_easy"],
    [id^="gmpMap"],
    [id*="gmpMap"],
    .gmp_map_opts,
    .gmpMapDetailsContainer,
    .gmp_MapPreview,
    .gmp_MapPreview > div
  ) {
    min-height: 300px !important;
  }

  .iz-quick-grid {
    grid-template-columns: 1fr !important;
  }

  .iz-quick-link,
  .iz-quick-link-wide {
    min-height: 132px;
    grid-column: auto;
  }

  .iz-news-header {
    align-items: flex-start;
  }

  .iz-news-all .elementor-button {
    min-height: 44px;
    font-size: 16px !important;
  }

  .iz-news-list {
    border-radius: var(--home-radius-sm);
  }

  .iz-news-feature-image,
  .iz-news-feature-image .elementor-widget-container,
  .iz-news-feature-image a,
  .iz-news-feature-image picture {
    height: auto !important;
    min-height: 0 !important;
  }

  .iz-news-feature,
  .iz-news-feature > .e-con-inner,
  .iz-news-feature > .elementor-container {
    min-height: 0;
    display: block !important;
  }

  .iz-news-feature-image {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .iz-news-feature-content {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0;
    margin-left: 0 !important;
  }

  .iz-news-feature-image img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10;
  }

  .iz-diversity-inner {
    grid-template-areas:
      "content"
      "media"
      "stats";
    gap: var(--home-space-2);
  }

  .iz-diversity-title .elementor-heading-title {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 60px);
    line-height: .92;
    letter-spacing: -.055em;
  }

  .iz-diversity-kicker-line {
    margin: 16px 0 24px !important;
  }

  .iz-diversity-title-line,
  .iz-diversity-title-line > .elementor-widget-container {
    width: 72px !important;
    max-width: 72px !important;
  }

  .iz-diversity-title-line {
    margin: 20px 0 24px !important;
  }

  .iz-diversity-media {
    order: initial;
  }

  .iz-diversity-image img {
    aspect-ratio: 4 / 3;
  }

  .iz-diversity-media::before {
    top: -14px;
    right: -14px;
  }

  .iz-film-content {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  :root {
    --home-gutter: 20px;
  }

  .iz-hero-search {
    border-radius: var(--home-radius-sm);
  }

  .iz-news-header {
    display: block;
  }

  .iz-news-all {
    margin-top: 16px;
  }

  .iz-diversity-stats {
    grid-template-columns: 1fr;
  }

  .iz-diversity-stat {
    padding-inline: 0;
  }

  .iz-diversity-stat:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 1px;
  }
}

/* ---------------------------------------------------------
   ACCESSIBLE MOBILE HOMEPAGE
--------------------------------------------------------- */

@media (max-width: 640px) {
  :root {
    --home-gutter: 20px;
    --home-space-2: 32px;
    --home-space-3: 48px;
    --home-space-4: 56px;
  }

  .iz-hero-inner,
  .iz-map-inner,
  .iz-quick-inner,
  .iz-news-inner,
  .iz-diversity-inner,
  .iz-film-inner {
    width: calc(100% - 40px) !important;
  }

  .iz-hero {
    min-height: auto;
    border-bottom-width: 5px;
  }

  .iz-hero-inner {
    gap: 28px;
    padding-block: 40px;
  }

  .iz-hero-content .elementor-heading-title {
    max-width: 10ch;
    margin-bottom: 20px;
    font-size: clamp(40px, 13vw, 54px);
    line-height: .96;
    letter-spacing: -.045em;
  }

  .iz-hero-text {
    max-width: none;
    margin-bottom: 20px;
    padding-left: 16px;
  }

  .iz-hero-text :is(p, .elementor-widget-container) {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
  }

  .iz-btn-city :is(.elementor-button, a) {
    width: 100%;
    min-height: 52px;
    font-size: 16px !important;
  }

  .iz-hero-search {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 20px;
    border-top-width: 5px;
    overflow: hidden;
  }

  .iz-hero-search .elementor-heading-title {
    margin-bottom: 16px;
    font-size: 21px;
    line-height: 1.2;
  }

  .iz-hero-search :is(form, .e-search, .e-search-form, .e-search-input-wrapper),
  .iz-hero-search > .e-con-inner,
  .iz-hero-search > .elementor-container {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .iz-hero-search :is(input[type="search"], input[type="text"], .e-search-input) {
    height: 54px;
    padding-left: 15px !important;
    font-size: 16px !important;
  }

  .iz-hero-search :is(button, .e-search-submit) {
    width: 46px;
    height: 46px;
    min-height: 46px;
  }

  .iz-service-links .elementor-nav-menu {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .iz-service-links :is(a, .elementor-item) {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px !important;
    justify-content: flex-start;
    font-size: 15px !important;
    line-height: 1.3 !important;
    text-align: left;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .iz-map,
  .iz-news,
  .iz-diversity-section,
  .iz-film,
  .iz-quick-section {
    padding-block: var(--home-space-3);
  }

  .iz-map-inner,
  .iz-film-inner {
    padding: 20px;
  }

  .iz-map-title .elementor-heading-title,
  .iz-news-header .elementor-heading-title,
  .iz-film-title .elementor-heading-title {
    font-size: 32px !important;
    line-height: 1.05 !important;
  }

  .iz-map-text :is(p, .elementor-widget-container),
  .iz-film-text :is(p, .elementor-widget-container) {
    font-size: 17px;
    line-height: 1.62;
  }

  .iz-map-button .elementor-button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    font-size: 16px !important;
  }

  .iz-map-frame,
  .iz-map-frame :is(
    .elementor-widget-shortcode,
    .elementor-widget-container,
    [id^="google_map_easy"],
    [id*="google_map_easy"],
    [id^="gmpMap"],
    [id*="gmpMap"],
    .gmp_map_opts,
    .gmpMapDetailsContainer,
    .gmp_MapPreview,
    .gmp_MapPreview > div
  ) {
    min-height: 280px !important;
  }

  .iz-quick-title .elementor-heading-title,
  .iz-quick-inner > .elementor-widget-heading .elementor-heading-title {
    font-size: 28px !important;
  }

  .iz-quick-link,
  .iz-quick-link-wide {
    min-height: 112px;
  }

  .iz-quick-card-link span,
  .iz-map-copy,
  .iz-map-bottom {
    font-size: 16px;
    line-height: 1.45;
  }

  .iz-news-header {
    margin-bottom: 28px;
    padding-bottom: 16px;
  }

  .iz-news-feature-content {
    padding: 20px !important;
  }

  .iz-news-feature-date,
  .iz-news-item-date {
    font-size: 14px;
  }

  .iz-news-feature-title .elementor-heading-title {
    font-size: 25px;
    line-height: 1.08;
  }

  .iz-news-feature-excerpt {
    font-size: 16px;
    line-height: 1.62;
  }

  .iz-news-item {
    min-height: 0;
    padding: 20px;
  }

  .iz-news-item-title .elementor-heading-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .iz-news-feature-link,
  .iz-news-feature-link :is(a, .elementor-button),
  .iz-news-item-link,
  .iz-news-item-link :is(a, .elementor-button) {
    min-height: 44px !important;
    font-size: 16px !important;
  }

  .iz-diversity-kicker .elementor-heading-title {
    font-size: 14px;
    line-height: 1.3;
  }

  .iz-diversity-title .elementor-heading-title {
    font-size: clamp(38px, 12vw, 50px);
    line-height: .98;
  }

  .iz-diversity-text :is(p, .elementor-widget-container) {
    font-size: 17px;
    line-height: 1.68;
  }

  .iz-diversity-text a[href$=".pdf"],
  .iz-diversity-download :is(a, .elementor-button) {
    min-height: 48px;
    padding: 12px 14px !important;
    font-size: 15px !important;
  }

  .iz-diversity-stats {
    position: relative;
    z-index: 2;
    width: 100% !important;
    min-width: 0 !important;
    margin-top: 8px;
    grid-template-columns: 1fr;
    clear: both;
  }

  .iz-diversity-stat {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 22px 0;
    overflow: hidden;
    background: transparent !important;
  }

  .iz-diversity-stat::before {
    display: none !important;
  }

  .iz-diversity-stat > .e-con-inner,
  .iz-diversity-stat .elementor-widget,
  .iz-diversity-stat .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-inline: 0 !important;
    background: transparent !important;
  }

  .iz-diversity-stat:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .iz-diversity-stat .elementor-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .iz-diversity-stat .elementor-heading-title {
    max-width: none;
    font-size: 18px;
    line-height: 1.3;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  .iz-diversity-stat :is(p, .elementor-widget-container) {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  .iz-diversity-media::before {
    display: none;
  }

  .iz-film-content {
    min-height: 0;
  }

  .iz-film-kicker .elementor-heading-title {
    font-size: 14px;
    line-height: 1.3;
  }

  .iz-film-button {
    margin-top: 24px;
  }

  .iz-film-button .elementor-button {
    min-height: 52px;
    font-size: 16px !important;
  }

  .iz-film-media,
  .iz-film-image img,
  .iz-film-media :is(img, iframe, video) {
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(.iz-hero, .iz-map, .iz-quick-section, .iz-news, .iz-diversity-section, .iz-film) *,
  :is(.iz-hero, .iz-map, .iz-quick-section, .iz-news, .iz-diversity-section, .iz-film) *::before,
  :is(.iz-hero, .iz-map, .iz-quick-section, .iz-news, .iz-diversity-section, .iz-film) *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
