/*
Theme Name: ICE-IT Migration
Theme URI: https://localhost:8088/
Author: Codex
Description: Migration theme for reproducing the Joomla site structure on WordPress.
Text Domain: iceit-migration
*/

:root {
  --iceit-accent: #3559d7;
  --iceit-accent-dark: #1e337c;
  --iceit-ink: #23314b;
  --iceit-muted: #69758b;
  --iceit-border: #d7dfeb;
  --iceit-surface: #ffffff;
  --iceit-soft: #eef3fb;
  --iceit-hero: linear-gradient(180deg, #202c46 0%, #2a4488 100%);
  --iceit-highlight: #f3d34a;
  --iceit-highlight-dark: #b58d0e;
  --iceit-azure-soft: #e9f1ff;
  --iceit-azure-border: #bfd0f5;
  --iceit-max: 1200px;
  --iceit-shadow: 0 20px 52px rgba(19, 33, 68, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", sans-serif;
  color: var(--iceit-ink);
  background: #f8fafc;
  line-height: 1.65;
}

a {
  color: var(--iceit-accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--iceit-accent);
}

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

.iceit-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------------------------------------------------------------------------
 * Header — pixel-matched to /png/header.sticky.png
 *
 * Design has exactly two rows, both on white:
 *   Row 1: logo · primary-menu · phone · «Заказать звонок» button
 *   Row 2: search input · «НАЙТИ ОБОРУДОВАНИЕ» button
 * No dark topbar — email/address/schedule live in the footer.
 * ------------------------------------------------------------------------- */

.iceit-header__inner,
.iceit-footer__inner {
  width: min(calc(100% - 2rem), var(--iceit-max));
  margin: 0 auto;
}

.iceit-main {
  flex: 1 1 auto;
  width: min(calc(100% - 2rem), var(--iceit-max));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

/* On the front page main is just a transparent passthrough so each section can be edge-to-edge */
body.home .iceit-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.iceit-utility-menu,
.iceit-primary-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.iceit-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--ice-line);
}

.iceit-header__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.75rem;
  align-items: center;
  padding: 10px 0 9px;
}

.iceit-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex: 0 0 auto;
}
.iceit-brand__img {
  display: block;
  width: 126px;
  height: auto;
  max-width: none;
  object-fit: contain;
}
/* Legacy SVG fallbacks (kept in case templates use them elsewhere). */
.iceit-brand__mark { display: inline-flex; }
.iceit-brand__mark svg { width: 44px; height: auto; display: block; }
.iceit-brand__title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--ice-font-sans);
  letter-spacing: 0.02em;
  color: var(--ice-ink);
}

.iceit-header__nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
}
.iceit-primary-menu {
  gap: 1.5rem;
  align-items: center;
}
.iceit-primary-menu a {
  color: var(--ice-ink);
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.2;
  text-decoration: none;
  transition: color .15s ease;
}
.iceit-primary-menu .current-menu-item > a,
.iceit-primary-menu .current-menu-parent > a,
.iceit-primary-menu .current-menu-ancestor > a,
.iceit-primary-menu a:hover {
  color: var(--ice-primary);
}

.iceit-header__cta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex: 0 0 auto;
}
.iceit-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--ice-ink);
  font-weight: 500;
  font-size: 0.8125rem;
  text-decoration: none;
  white-space: nowrap;
}
.iceit-header__phone:hover { color: var(--ice-primary); }
.iceit-header__phone-ico { color: var(--ice-ink); display: inline-flex; }
.iceit-header__phone-ico svg { width: 14px; height: 14px; }
.iceit-header__btn {
  white-space: nowrap;
  min-height: 30px;
  padding: 0 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 4px;
}

/* Search bar — second row */
.iceit-search {
  background: #fff;
}
.iceit-search__form {
  width: min(calc(100% - 2rem), 690px);
  margin: 0 auto;
  padding: 12px 0 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 174px;
  gap: 11px;
  align-items: center;
  position: relative;
}
.iceit-search__ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ice-muted);
  display: inline-flex;
  pointer-events: none;
}
.iceit-search__ico svg { width: 15px; height: 15px; }
.iceit-search__form input[type="search"] {
  border: 1px solid var(--ice-line);
  border-radius: 4px;
  min-height: 36px;
  padding: 9px 14px 9px 38px;
  font: 400 0.75rem/1.4 var(--ice-font-sans);
  background: #fff;
  color: var(--ice-ink);
  outline: 0;
  width: 100%;
}
.iceit-search__form input[type="search"]::placeholder {
  color: var(--ice-muted);
}
.iceit-search__form input[type="search"]:focus {
  border-color: var(--ice-primary);
  outline: 2px solid var(--ice-primary-50);
}
.iceit-search__form button {
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  min-height: 36px;
  padding: 0 18px;
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .iceit-primary-menu { gap: 1.25rem; }
  .iceit-header__inner { gap: 1.25rem; }
}

@media (max-width: 900px) {
  .iceit-header__burger {
    display: inline-block;
  }
  .iceit-brand { display: none; }
  .iceit-header__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.875rem 1rem;
  }
  .iceit-header__nav {
    display: none;
    order: 4;
    flex-basis: 100%;
    grid-column: 1 / -1;
  }
  body.iceit-nav-open .iceit-header__nav { display: block; }
  .iceit-header__cta {
    justify-self: end;
    gap: 0.625rem;
  }
  .iceit-search__form {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .iceit-search__ico { top: 30px; }
}

@media (max-width: 768px) {
  .iceit-header__inner { gap: 0.75rem 0.875rem; }
  .iceit-header__phone {
    gap: 0.25rem;
    font-size: 0.75rem;
  }
  .iceit-header__phone-ico svg { width: 13px; height: 13px; }
  .iceit-header__btn {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.625rem;
  }
}

@media (max-width: 480px) {
  .iceit-header__cta { gap: 0.5rem; }
  .iceit-header__phone { font-size: 0.6875rem; }
  .iceit-header__btn {
    padding: 0 8px;
    font-size: 0.5625rem;
  }
}

.iceit-hero {
  color: #fff;
  background: var(--iceit-hero);
  border-radius: 28px;
  box-shadow: var(--iceit-shadow);
  overflow: hidden;
  position: relative;
  padding: 3rem;
}

.iceit-hero::after {
  content: "";
  position: absolute;
  inset: auto -6% -24% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.iceit-hero__eyebrow {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.iceit-hero h1,
.iceit-page-header h1 {
  margin: 0.8rem 0 1rem;
  line-height: 1.1;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.iceit-hero p {
  max-width: 740px;
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.iceit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.iceit-button,
.iceit-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.iceit-button:hover {
  transform: translateY(-1px);
}

.iceit-button--light {
  background: #fff;
  color: var(--iceit-ink);
  box-shadow: 0 14px 30px rgba(9, 18, 27, 0.18);
}

.iceit-button--outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.iceit-button--brand {
  background: var(--iceit-highlight);
  color: #19233a;
  box-shadow: 0 14px 26px rgba(243, 211, 74, 0.32);
}

.iceit-button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.iceit-button--outline-dark {
  border: 1px solid rgba(35, 49, 75, 0.16);
  color: var(--iceit-ink);
  background: rgba(255, 255, 255, 0.82);
}

.iceit-button--dark {
  border: 1px solid rgba(20, 30, 45, 0.2);
  background: #1f2433;
  color: #fff;
}

.iceit-page-header,
.iceit-surface {
  background: var(--iceit-surface);
  border: 1px solid rgba(32, 49, 60, 0.07);
  box-shadow: var(--iceit-shadow);
  border-radius: 24px;
}

.iceit-page-header {
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.iceit-surface {
  padding: 2rem;
}

.iceit-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  align-items: center;
  padding-top: 16px;
  margin: 0 0 16px;
  color: #97a1b2;
  font-size: 12px;
  line-height: 1.2;
}

.iceit-breadcrumbs span::after {
  content: "/";
  margin-left: 0.32rem;
  color: #c7d0df;
}

.iceit-breadcrumbs span:last-child::after {
  display: none;
}

.iceit-breadcrumbs a {
  color: inherit;
}

.iceit-breadcrumbs a:hover {
  color: var(--ice-primary);
}

.iceit-grid {
  display: grid;
  gap: 1.35rem;
}

.iceit-grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.iceit-grid--posts {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.iceit-section {
  margin-top: 2rem;
}

.iceit-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.iceit-section__head h2 {
  margin: 0;
  font-size: 1.5rem;
}

.iceit-card,
.iceit-post-card,
.iceit-term-card {
  background: var(--iceit-surface);
  border: 1px solid rgba(32, 49, 60, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(19, 45, 57, 0.08);
}

.iceit-card__body,
.iceit-post-card__body,
.iceit-term-card__body {
  padding: 1.25rem;
}

.iceit-term-card__meta,
.iceit-post-card__meta,
.iceit-single__meta {
  color: var(--iceit-muted);
  font-size: 0.92rem;
}

.iceit-card h3,
.iceit-post-card h3,
.iceit-term-card h3 {
  margin: 0 0 0.7rem;
  line-height: 1.25;
  font-size: 1.15rem;
}

.iceit-card p,
.iceit-post-card p,
.iceit-term-card p {
  margin: 0;
  color: var(--iceit-muted);
}

.iceit-media-frame {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #eff6f9, #dbeef7);
  overflow: hidden;
}

.iceit-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iceit-content {
  color: var(--iceit-ink);
}

.iceit-content h2,
.iceit-content h3,
.iceit-content h4 {
  line-height: 1.2;
  margin-top: 1.6rem;
}

.iceit-content table {
  width: 100%;
  border-collapse: collapse;
}

.iceit-content table td,
.iceit-content table th {
  border: 1px solid var(--iceit-border);
  padding: 0.65rem 0.8rem;
}

.iceit-content img {
  border-radius: 16px;
}

.iceit-single {
  display: grid;
  gap: 1.5rem;
}

.iceit-single__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.iceit-single__hero {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(32, 49, 60, 0.08);
  background: #edf7fb;
}

.iceit-single__hero img {
  width: 100%;
}

.iceit-pillset {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.iceit-pill {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--iceit-soft);
  color: var(--iceit-accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.iceit-footer {
  background: #1d2d37;
  color: #d5e6ee;
  padding: 2rem 0;
  margin-top: 2rem;
}

.iceit-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.iceit-empty {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #f7fbfd;
  border: 1px dashed var(--iceit-border);
  color: var(--iceit-muted);
}

@media (max-width: 900px) {
  .iceit-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .iceit-hero,
  .iceit-page-header,
  .iceit-surface {
    padding: 1.35rem;
    border-radius: 22px;
  }
}

@media (max-width: 600px) {
  body:not(.home) .iceit-main {
    width: min(calc(100% - 1rem), var(--iceit-max));
    padding-top: 1rem;
  }

  .iceit-header__inner {
    width: min(calc(100% - 1rem), var(--iceit-max));
  }
}

.iceit-home {
  display: grid;
  gap: 1.25rem;
}

.iceit-home-kicker,
.iceit-home-section__kicker {
  margin: 0 0 0.75rem;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iceit-accent-dark);
}

.iceit-home-hero,
.iceit-home-highlight,
.iceit-home-category-card,
.iceit-home-post-card,
.iceit-home-editorial__content,
.iceit-home-editorial__aside,
.iceit-home-cta,
.iceit-home-benefit,
.iceit-home-testimonial {
  border-radius: 18px;
  background: var(--iceit-surface);
  border: 1px solid rgba(35, 49, 75, 0.1);
  box-shadow: 0 10px 26px rgba(14, 29, 66, 0.08);
}

.iceit-home-hero {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  padding: 1.25rem;
}

.iceit-home-title {
  margin: 0;
  max-width: 14ch;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.iceit-home-lead {
  margin: 0.85rem 0 0;
  max-width: 56ch;
  color: var(--iceit-muted);
}

.iceit-home-hero__content,
.iceit-home-hero__aside,
.iceit-home-editorial,
.iceit-home-cta {
  min-width: 0;
}

.iceit-home-search {
  margin: 1rem 0 0.85rem;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.iceit-home-search label {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--iceit-muted);
}

.iceit-home-search input,
.iceit-home-request-form input,
.iceit-home-request-form textarea {
  width: 100%;
  border: 1px solid rgba(35, 49, 75, 0.16);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.iceit-home-hero__aside {
  display: grid;
  gap: 0.75rem;
}

.iceit-home-hero-media {
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #dce7ff, #f6f9ff);
  min-height: 260px;
}

.iceit-home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iceit-home-hero-media__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--iceit-muted);
}

.iceit-home-panel--compact {
  padding: 0.9rem;
}

.iceit-home-stat-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.iceit-home-stat-list--compact .iceit-home-stat-list__item {
  border: 1px solid rgba(35, 49, 75, 0.12);
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
}

.iceit-home-stat-list__item span {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.iceit-home-stat-list__item small {
  color: var(--iceit-muted);
  font-size: 0.8rem;
}

.iceit-home-highlights {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.iceit-home-highlight {
  padding: 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.iceit-home-highlight__icon,
.iceit-home-category-card__dot,
.iceit-home-benefit__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(53, 89, 215, 0.12);
  color: var(--iceit-accent);
  font-size: 0.95rem;
  line-height: 1;
}

.iceit-home-highlight h2 {
  margin: 0;
  font-size: 0.96rem;
}

.iceit-home-highlight p {
  margin: 0;
  color: var(--iceit-muted);
  font-size: 0.86rem;
}

.iceit-home-section {
  display: grid;
  gap: 0.9rem;
}

.iceit-home-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.iceit-home-section__head h2,
.iceit-home-editorial__content h2,
.iceit-home-cta h2 {
  margin: 0;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.1;
}

.iceit-home-text-link,
.iceit-home-card-link,
.iceit-home-contact-link {
  color: var(--iceit-accent-dark);
  font-weight: 700;
}

.iceit-home-category-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.iceit-home-category-card {
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

.iceit-home-category-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--iceit-muted);
  text-transform: uppercase;
}

.iceit-home-category-card h3,
.iceit-home-post-card h3,
.iceit-home-benefit h3,
.iceit-home-testimonial h3 {
  margin: 0;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1rem;
}

.iceit-home-category-card p,
.iceit-home-post-card p,
.iceit-home-editorial__content p,
.iceit-home-benefit p,
.iceit-home-testimonial p,
.iceit-home-cta p {
  margin: 0;
  color: var(--iceit-muted);
}

.iceit-home-editorial {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.iceit-home-editorial__content,
.iceit-home-editorial__aside {
  padding: 1rem;
}

.iceit-home-editorial__content--promo {
  color: #fff;
  background: linear-gradient(150deg, #1f4bcf, #2e66ef);
}

.iceit-home-editorial__content--promo .iceit-home-section__kicker,
.iceit-home-editorial__content--promo h2,
.iceit-home-editorial__content--promo p {
  color: #fff;
}

.iceit-home-promo-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iceit-home-promo-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  padding: 0.5rem;
  display: grid;
  gap: 0.5rem;
}

.iceit-home-promo-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 9px;
}

.iceit-home-promo-card h3 {
  margin: 0;
  font-size: 0.85rem;
}

.iceit-home-promo-card a {
  color: #fff;
}

.iceit-home-editorial__aside--form h3 {
  margin: 0;
  font-size: 1.1rem;
}

.iceit-home-request-form {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.65rem;
}

.iceit-home-request-form label {
  display: grid;
  gap: 0.3rem;
}

.iceit-home-request-form span {
  font-size: 0.78rem;
  color: var(--iceit-muted);
}

.iceit-home-form-note {
  margin-top: 0.55rem;
  font-size: 0.75rem;
}

.iceit-home-post-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.iceit-home-post-card {
  overflow: hidden;
}

.iceit-home-post-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--iceit-azure-soft), #f7faff);
}

.iceit-home-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iceit-home-post-card__body {
  display: grid;
  gap: 0.55rem;
  padding: 0.8rem;
}

.iceit-home-post-card__meta {
  color: var(--iceit-muted);
  font-size: 0.76rem;
}

.iceit-home-post-card__price {
  font-family: "Inter", "Roboto", sans-serif;
  font-weight: 700;
  color: var(--iceit-accent-dark);
}

.iceit-home-benefits-grid,
.iceit-home-testimonials-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iceit-home-benefit,
.iceit-home-testimonial {
  padding: 0.85rem;
  display: grid;
  gap: 0.5rem;
}

.iceit-home-testimonial__head {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.iceit-home-testimonial__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(53, 89, 215, 0.12);
  color: var(--iceit-accent-dark);
  font-weight: 700;
}

.iceit-home-testimonial__head p {
  font-size: 0.78rem;
}

.iceit-home-cta {
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: var(--iceit-hero);
}

.iceit-home-cta .iceit-home-section__kicker,
.iceit-home-cta h2,
.iceit-home-cta p,
.iceit-home-cta .iceit-home-contact-link {
  color: #fff;
}

.iceit-home-cta__actions {
  display: grid;
  justify-items: start;
  gap: 0.6rem;
}

.iceit-home-contact-link {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .iceit-home-category-grid,
  .iceit-home-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iceit-home-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iceit-home-editorial {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .iceit-home-hero {
    grid-template-columns: 1fr;
  }

  .iceit-home-promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iceit-home-benefits-grid,
  .iceit-home-testimonials-grid,
  .iceit-home-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .iceit-home {
    gap: 1rem;
  }

  .iceit-home-hero,
  .iceit-home-highlight,
  .iceit-home-category-card,
  .iceit-home-editorial__content,
  .iceit-home-editorial__aside,
  .iceit-home-benefit,
  .iceit-home-testimonial,
  .iceit-home-cta {
    padding: 0.85rem;
  }

  .iceit-home-search {
    grid-template-columns: 1fr;
  }

  .iceit-home-category-grid,
  .iceit-home-post-grid,
  .iceit-home-highlights,
  .iceit-home-promo-grid {
    grid-template-columns: 1fr;
  }

  .iceit-home-section__head {
    align-items: start;
  }
}
