:root {
  --primary: #3cabe1;
  --primary-dark: #2797cf;
  --dark: #232427;
  --heading: #8a8a89;
  --muted: #8a8a89;
  --text: #7a7a7a;
  --line: #ececec;
  --surface: #f7f7f7;
  --footer: #3cabe1;
  --accent: #ffa300;
  --max-width: 1280px;
  --font: "Source Sans Pro", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  min-width: 320px;
}

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

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

.row,
.content-block .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.clearfix::after,
.row::after,
.content-block::after {
  content: "";
  display: table;
  clear: both;
}

[class*="col-"] {
  width: 100%;
  min-width: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.content-block > [class*="col-"],
.content-block [class*="col-"] {
  position: relative;
}

.content-block .col-lg-12 > [class*="col-"],
.content-block .col-md-12 > [class*="col-"],
.content-block .col-sm-12 > [class*="col-"],
.content-block .col-12 > [class*="col-"] {
  float: left;
}

.col-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    width: 50%;
  }

  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    width: 33.333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-8 {
    width: 66.666667%;
  }

  .col-md-12 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.333333%;
  }

  .col-lg-5 {
    width: 41.666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333333%;
  }

  .col-lg-8 {
    width: 66.666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-12 {
    width: 100%;
  }
}

button,
input,
textarea,
select {
  font: inherit;
}

.tkb-inline-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: text-top;
  margin-right: 10px;
  color: var(--primary);
  flex: 0 0 18px;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.container-wide {
  width: min(90vw, 1720px);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-title {
  margin: 0 0 28px;
  color: var(--heading);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title.center {
  text-align: center;
}

.category-heading-section {
  padding-top: 28px;
  padding-bottom: 8px;
}

.category-heading-title {
  color: var(--primary);
  margin-bottom: 0;
}

.category-group + .category-group {
  margin-top: 46px;
}

.category-group-title {
  margin-bottom: 22px;
  text-align: left;
  color: var(--primary);
  font-size: 28px;
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 18px;
  line-height: 1.75;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #efefef;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}

.brand img {
  width: 250px;
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.submenu-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 30px 16px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-item:hover > .nav-link,
.nav-item.active > .nav-link {
  color: var(--primary);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 290px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border-top: 3px solid var(--primary);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.submenu .submenu {
  top: 0;
  left: 100%;
  border-top: 0;
  border-left: 3px solid var(--primary);
}

.nav-item:hover > .submenu,
.submenu-item:hover > .submenu {
  display: block;
}

.submenu-link {
  display: block;
  padding: 11px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #f3f3f3;
  transition: color 0.2s ease, background 0.2s ease;
}

.submenu-link:hover,
.submenu-item.active > .submenu-link {
  color: var(--primary);
  background: #fafafa;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
}

.header-icon-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
}

.mobile-nav {
  display: none;
  background: var(--dark);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 13px 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav .mobile-sub {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
}

.search-overlay[hidden] {
  display: none;
}

.search-overlay-close {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
}

.search-overlay-close svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.search-overlay-form {
  width: min(100%, 980px);
}

.search-overlay-field {
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 2px solid #d8d8d8;
  padding-bottom: 16px;
}

.search-overlay-logo {
  width: 140px;
  flex: 0 0 140px;
}

.search-overlay-input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--heading);
  font-size: 32px;
  font-weight: 600;
  outline: none;
}

.search-overlay-input::placeholder {
  color: #a7a7a7;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 540px;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  opacity: 0.88;
}

.hero-slide.active img {
  animation: heroZoom 7s ease forwards;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
    opacity: 0.88;
  }
  100% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 6, 0.52);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.hero-panel {
  position: relative;
  max-width: 780px;
  padding: 0 0 54px 64px;
  color: #fff;
  margin-top: auto;
}

.hero-mark {
  width: 110px;
  margin-bottom: 28px;
}

.hero-title {
  margin: 0;
  font-size: 76px;
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-title strong {
  display: block;
  margin-top: 6px;
  font-weight: 900;
}

.hero-subtitle {
  margin: 10px 0 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  width: 100%;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 0 34px;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
  border-radius: 3px;
}

.btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 30px;
  height: 110px;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-divider {
  width: 100%;
  max-width: 690px;
  height: 54px;
  object-fit: contain;
  opacity: 0.95;
  margin: 12px 0 20px;
}

.hero-arrow.prev {
  left: 0;
}

.hero-arrow.next {
  right: 0;
}

.hero-arrow::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero-arrow.prev::before {
  transform: rotate(-135deg);
}

.hero-arrow.next::before {
  transform: rotate(45deg);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
}

.feature-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.feature-card-body {
  padding-top: 18px;
  text-align: center;
}

.feature-card-title {
  margin: 0;
  color: var(--primary);
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
}

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

.post-grid,
.category-grid,
.catalog-grid,
.project-grid,
.logo-grid {
  display: grid;
  gap: 24px;
}

.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  background: #fff;
}

.post-card img {
  width: 100%;
  aspect-ratio: 300 / 170;
  object-fit: cover;
}

.post-card h3 {
  margin: 18px 0 10px;
  color: var(--heading);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 400;
}

.post-card p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.7;
}

.read-more {
  color: var(--heading);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.read-more:hover,
.post-card h3 a:hover {
  color: var(--primary);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 18px 14px;
}

.industry-card {
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.industry-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.industry-card h4 {
  margin: 10px 0 0;
  color: var(--primary);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.industry-card:hover {
  transform: translateY(-2px) scale(1.02);
}

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

.section-title.with-line {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary);
}

.section-title.tight {
  margin-bottom: 34px;
}

.clients-section {
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 10px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 118px;
  padding: 12px;
  background: #fff;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.95;
}

.logo-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
}

.logo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 22px 0;
}

.page-hero-news {
  position: relative;
  padding: 96px 0 88px;
  background:
    linear-gradient(rgba(6, 16, 24, 0.42), rgba(6, 16, 24, 0.42)),
    url("https://tehnikakb.com/wp-content/uploads/2022/06/tttttt-1.png") center / cover no-repeat;
}

.page-hero h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-hero-news h1 {
  font-size: 44px;
  text-align: center;
}

.page-hero-article-kgh {
  position: relative;
  padding: 96px 0 88px;
  background:
    linear-gradient(rgba(6, 16, 24, 0.5), rgba(6, 16, 24, 0.5)),
    url("https://tehnikakb.com/wp-content/uploads/2025/11/Pozivnica-za-sajam-KGH-sajt-scaled.jpg") center 28% / cover no-repeat;
}

.page-hero-article-kgh h1 {
  font-size: 44px;
  text-align: center;
}

.breadcrumb-wrap {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 4px;
  color: var(--muted);
}

.breadcrumb .current {
  color: var(--primary);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-block h2,
.content-block h3 {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-block p,
.content-block li {
  font-size: 16px;
  line-height: 1.8;
}

.content-block p {
  margin: 0 0 16px;
}

.content-block ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.surface {
  background: var(--surface);
}

.shadow-card,
.product-card,
.catalog-card,
.contact-card,
.sidebar-card,
.stat-card {
  background: #fff;
  border: 1px solid #e8e8e8;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  justify-content: center;
}

.tkb-category-designer-grid {
  grid-template-columns: repeat(var(--tkb-designer-columns, 5), minmax(180px, 220px));
  justify-content: center;
}

.category-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.category-card:hover {
  box-shadow: none;
  transform: none;
}

.product-card.category-card:hover {
  box-shadow: none !important;
  transform: none !important;
}

.category-card .product-thumb {
  background: transparent;
  max-height: 190px;
}

.category-card .product-thumb img {
  height: 240px;
  padding: 10px;
  transition: transform 0.25s ease;
}

.category-card:hover .product-thumb img {
  transform: scale(1.04);
}

.category-card .product-body {
  border-top: 0;
  padding: 8px 8px 0;
  text-align: left;
}

.category-card .product-title {
  color: var(--primary);
  font-size: 17px;
  font-weight: 400;
  text-align: left;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.catalog-card {
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card:hover,
.catalog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.product-thumb,
.catalog-thumb {
  background: #f9f9f9;
}

.product-thumb img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 20px;
}

.catalog-thumb img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: contain;
  padding: 18px;
}

.product-body,
.catalog-body {
  padding: 16px 16px 22px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.badge {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-icon-list ul{
  padding-left: 0px !important;
}
.product-title,
.catalog-title {
  margin: 0;
  color: var(--heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-text,
.catalog-text {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.7;
}
.product-pdf-download a{
  padding: 10px 20px;
  border: 1px solid #D7D7D7;
  border-radius: 10px;
}
.product-pdf-download a:hover{
  background: #25aae2;
  color: white !important;
}
.product-pdf-download a:hover img{
  filter: brightness(0) invert(1);
}
.section-sm .tabs{
  border-top: 0 !important;
}
/* ═══════════════════════════════════════════
   KATALOZI PAGE STYLES
   (override shared card & grid defaults)
   ═══════════════════════════════════════════ */

/* Hero / page title strip */
.katalozi-hero {
  background: transparent;
  padding: 36px 0 10px;
}

.katalozi-hero-title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Section headings: primary blue, centered */
.katalozi-section-title {
  color: var(--primary);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

/* ── Catalog card: transparent, no border, no shadow ── */
.catalog-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.catalog-card:hover {
  box-shadow: none;
  transform: none;
}

.catalog-card .catalog-thumb {
  background: transparent;
}

/* Images: natural size, not stretched */
.catalog-card .catalog-thumb img {
  width: auto;
  max-width: 100%;
  aspect-ratio: auto;
  padding: 0;
  margin: 0 auto;
}

/* Body: no top border, transparent */
.catalog-card .catalog-body {
  border-top: 0;
  background: transparent;
}

/* ── Catalog title: 20px, heading grey (matches live) ── */
.catalog-title {
  font-size: 20px;
}

/* Catalog title links */
.catalog-title a {
  color: inherit;
  text-decoration: none;
}

.catalog-title a:hover {
  color: var(--primary);
}

/* Description text: 17px (matches live) */
.catalog-text {
  font-size: 17px !important;
}

/* ── Download icon: 50px, centered ── */
.catalog-download {
  margin-top: 16px;
}

.catalog-download img {
  width: 50px;
  height: auto;
  margin: 0 auto;
  transition: opacity 0.2s;
}

.catalog-download a:hover img {
  opacity: 0.75;
}

/* ── Main 3-katalog grid: flex centered, narrow cards ── */
.catalog-grid--main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.catalog-grid--main .catalog-card {
  width: 220px;
  flex: 0 0 220px;
}

/* ── 5-column product grid ── */
.catalog-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.catalog-grid--groups {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

/* Group catalog card */
.catalog-card--group {
  text-align: center;
}

.catalog-card--group .catalog-thumb {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.catalog-card--group .catalog-thumb img {
  width: 100%;
  max-width: 220px;
}

.catalog-card--group .catalog-body {
  padding: 10px 8px 14px;
}

.catalog-card--group .catalog-title {
  font-size: 20px;
  line-height: 1.15;
  min-height: 38px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: start;
}

.sidebar-card {
  padding: 22px 20px;
}

.sidebar-title {
  margin: 0 0 14px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 10px;
}

.sidebar-list,
.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-list li + li,
.mini-list li + li {
  border-top: 1px solid #f1f1f1;
}

.sidebar-list a,
.mini-list a {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar-list .active > a,
.mini-list .active > a,
.sidebar-list a:hover,
.mini-list a:hover {
  color: var(--primary);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-head-image img {
  display: block;
  width: 100%;
  height: auto;
}

.product-layout img {
  width: 100%;
}

.product-gallery {
  position: relative;
}

.product-gallery-track {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.product-gallery-slide {
  display: none;
}

.product-gallery-slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-gallery[data-product-slider-ready] .product-gallery-track {
  height: var(--product-gallery-height);
}

.product-gallery[data-product-slider-ready] .product-gallery-slide {
  height: var(--product-gallery-height);
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.product-gallery-arrow:hover {
  background: rgba(37, 170, 226, 0.9);
}

.product-gallery-arrow span {
  font-size: 30px;
  line-height: 1;
}

.product-gallery-arrow-prev {
  left: 16px;
}

.product-gallery-arrow-next {
  right: 16px;
}

.product-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.product-gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-gallery-dot.active {
  background: var(--primary);
  transform: scale(1.15);
}

.product-summary h2 {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-pdf-download {
  margin-top: 22px;
}

.product-pdf-label {
  display: block;
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-pdf-download a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.product-pdf-download a:hover {
  color: var(--primary);
}

.product-pdf-download img {
  width: 38px;
  height: auto;
  display: block;
}

.tabs {
  margin-top: 10px;
  border-top: 2px solid #e8e8e8;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #e8e8e8;
}

.tab-nav button {
  padding: 13px 22px;
  border: 2px solid transparent;
  border-bottom: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.tab-nav .active button {
  color: white;
  /* border-color: #e8e8e8; */
  background: #fff;
  background-color: #25aae2 !important;
  border-radius: 10px 10px 0px 0px;
}

.tab-panel {
  display: none;
  padding: 30px 0;
}

.tab-panel.active {
  display: block;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
}

.news-archive-section {
  padding-top: 42px;
}

.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}

.news-card {
  background: #fff;
}

.news-card-media {
  display: block;
}

.news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 300 / 170;
  object-fit: cover;
}

.news-card-body {
  padding: 10px 25px;
}
.news-card-link{
  padding: 20px 0px 10px;
}

.news-card-body h2 a{
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #0b2238;
}

.news-card-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.news-card-tag:hover {
  color: #fff;
  text-decoration: none;
}

.news-card-meta {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.news-card-meta span {
  margin: 0 6px;
}

.news-card h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 400;
}

.news-card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
}

.news-card-link {
  display: inline-block;
  color: var(--heading);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.news-card-link:hover,
.news-card h2 a:hover {
  color: var(--primary);
}

.news-sidebar {
  padding-top: 4px;
}

.news-sidebar .sidebar-title {
  margin-bottom: 18px;
}

.news-sidebar .mini-list li {
  padding: 14px 0;
}

.news-sidebar .mini-list li:first-child {
  padding-top: 0;
}

.news-sidebar .mini-list a {
  padding: 0;
  font-size: 15px;
  line-height: 1.5;
}

.news-sidebar .mini-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.article-card {
  background: #fff;
}

.article-card h1 {
  margin: 0 0 22px;
  color: var(--heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.article-meta {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-meta span {
  margin: 0 6px;
}

.article-body img {
  width: 100%;
  margin-bottom: 24px;
}

.article-body p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.85;
}

.split-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ── Kontakt page ──────────────────────────────────────────────── */

/* Full-width map above columns */
.contact-map-wrap {
  width: 100%;
}

.contact-map-frame {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* Two-column grid: equal halves */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Left column */
.contact-info-col {
  padding: 12px 0;
}

.contact-logo-wrap {
  margin-bottom: 28px;
}

.contact-logo {
  max-width: 260px;
  height: auto;
}

/* Icon lists */
.contact-icon-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.contact-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.contact-icon-list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.contact-icon-list a:hover {
  color: var(--primary);
}

.contact-icon {
  flex: 0 0 20px;
  text-align: center;
  color: var(--primary);
  font-size: 15px;
  padding-top: 3px;
}

/* Download links */
.contact-downloads {
  margin-top: 8px;
}

.contact-download-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-download-link a {
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
}

.contact-download-link a:first-child:hover {
  color: var(--primary);
}

.contact-download-link img {
  width: 32px;
  height: auto;
  display: block;
}

/* Right column: form */
.contact-form-col {
  padding: 12px 0;
}

.contact-form-heading {
  margin: 0 0 24px;
  color: #6EC1E4;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Legacy map-frame (kept for other pages) */
.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
}

/* Contact form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field,
.select,
.textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dedede;
  background: #fff;
}

.textarea {
  min-height: 150px;
  resize: vertical;
  grid-column: 1 / -1;
}

.full {
  grid-column: 1 / -1;
}

.checkline {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
}

/* Legacy contact-list / download-list (kept for compatibility) */
.contact-card {
  padding: 28px;
}

.contact-card h2,
.contact-card h3 {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
}

.contact-list strong {
  color: var(--heading);
}

.download-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-page {
  background: #fff;
}

.about-intro {
  padding-top: 54px;
  padding-bottom: 68px;
}

.about-intro-grid,
.about-business-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 44px;
  align-items: start;
}

.about-intro-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.about-intro-media img,
.about-map img {
  width: 100%;
  height: auto;
}

.about-intro-media.is-small {
  display: flex;
  justify-content: flex-end;
}

.about-intro-media.is-small img {
  width: min(100%, 300px);
}

.about-intro-content h1 {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.about-intro-content p,
.about-business-content p,
.about-copy p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.72;
}

.about-intro-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.about-intro-thumbs img {
  width: 100%;
  height: auto;
}

.about-business {
  padding-top: 28px;
  padding-bottom: 70px;
}

.about-business-content h2,
.about-iso-head h2,
.about-copy h2 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.about-business-content h2 + p,
.about-copy h2 + p {
  margin-top: 0;
}

.about-business-content h2:not(:first-child),
.about-copy h2:not(:first-child) {
  margin-top: 28px;
}

.about-market-list p {
  margin: 0 0 8px;
}

.about-overview {
  padding-top: 28px;
  padding-bottom: 20px;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 560px);
  gap: 44px;
  align-items: center;
}

.about-overview-copy h2 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.about-overview-copy h2:not(:first-child) {
  margin-top: 34px;
}

.about-overview-copy p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.72;
}

.about-overview-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-overview-media img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

.about-map {
  padding-top: 10px;
}

.about-iso {
  padding-top: 18px;
  padding-bottom: 76px;
  text-align: center;
  justify-items: center;
  justify-content: center;
  align-items: center;
}

.about-iso-head {
  max-width: 960px;
  margin-bottom: 30px;
  margin: 0 auto;
}

.about-iso-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-iso-card {
  text-align: center;
}

.about-iso-visual {
  display: block;
}

.about-iso-visual img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.about-iso-card h3 {
  margin: 14px auto 10px;
  max-width: 240px;
  color: var(--heading);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.about-iso-card h3 a:hover {
  color: var(--primary);
}

.about-iso-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-iso-download img {
  width: 44px;
  height: 44px;
}

.about-mission {
  padding-top: 8px;
  padding-bottom: 76px;
}

.about-mission h2{
  text-align: center;
}

.section.mission-block--first {
  padding-bottom: 0;
}

.section.mission-block--second {
  padding-top: 15px;
}

.about-copy {
  max-width: none;
}

.about-partners {
  padding-top: 8px;
  padding-bottom: 82px;
}

.about-partners-title {
  margin-bottom: 34px;
  color: var(--heading);
}

.about-partners-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 14px;
}

.about-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.about-partner img {
  max-width: 100%;
  max-height: 94px;
  object-fit: contain;
}

.about-partner-sample img {
  max-height: 68px;
}

.engineering-title {
  color: var(--primary) !important;
}

.engineering-intro {
  padding-top: 54px;
  padding-bottom: 48px;
}

.engineering-projects {
  padding-top: 24px;
  padding-bottom: 72px;
  background: #8a8a89;
}

.engineering-projects-lead {
  margin-bottom: 26px;
  text-align: center;
}

.engineering-projects-lead p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.75;
}

.engineering-projects-heading {
  margin: 0 0 12px;
  color: #fff;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.engineering-project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.engineering-project-card {
  background: transparent;
}

.engineering-project-card img {
  object-fit: contain;
  border-radius: 15px;
}

.engineering-project-card h3{
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.25;
  color: white;
  text-align: center;
  text-transform: uppercase;
}

.engineering-project-card h3 a:hover {
  color: var(--primary);
}

.stat-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  color: var(--heading);
  font-size: 40px;
  font-weight: 700;
}

.stat-card span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.footer {
  margin-top: 0;
  background: var(--footer);
  color: #fff;
}

.footer-top {
  padding: 56px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 36px;
}

.footer-logo {
  width: 240px;
  margin-bottom: 18px;
}

.footer p,
.footer li,
.footer a {
  font-size: 17px;
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li + li {
  margin-top: 8px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.92);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
}

.socials a:hover {
  opacity: 0.8;
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: #fff;
  stroke: #fff;
  margin-top: 5px;
}

.download-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.download-link svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.fixed-rail {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
}

.fixed-rail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #3cabe1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.fixed-rail svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: #111;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-align: center;
}

.footer-bottom a {
  color: #fff;
}

/* ── Zaposlenje page ───────────────────────────────────────────── */

.zaposlenje-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.zaposlenje-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zaposlenje-text-col {
  padding: 32px 40px;
}

.zaposlenje-heading {
  margin: 0 0 22px;
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

.zaposlenje-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.konkursi-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.konkursi-list li {
  padding: 4px 0;
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
}

.konkursi-list li::before {
  content: "– ";
  color: var(--text);
}

/* Zaposlenje form (stacked layout) */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}

.field-file {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
}

/* ── Galerija page ─────────────────────────────────────────────── */

.gallery-section-title {
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 36px;
  letter-spacing: 0.04em;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  background: #f0f0f0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 330 / 380;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.88;
}

.video-gallery {
  display: flex;
  justify-content: center;
}

.video-embed {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
}

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

@media (max-width: 1200px) {
  .industry-grid,
  .logo-grid,
  .about-partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tkb-category-designer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-iso-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .hero-content {
    min-height: 540px;
  }

  .hero-panel {
    padding: 0;
  }

  .hero-title {
    font-size: 52px;
  }

  .nav-link {
    font-size: 16px;
    padding: 30px 10px;
  }

  .search-overlay-logo {
    width: 110px;
    flex-basis: 110px;
  }

  .search-overlay-input {
    font-size: 24px;
  }

  .post-grid,
  .project-grid,
  .contact-grid,
  .zaposlenje-split,
  .zaposlenje-grid,
  .split-card,
  .article-layout,
  .shop-layout,
  .product-layout,
  .two-col,
  .about-intro-grid,
  .about-business-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tkb-category-designer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid,
  .catalog-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-grid--groups,
  .catalog-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .engineering-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid,
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clients-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .about-partners-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .product-gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .product-gallery-arrow-prev {
    left: 10px;
  }

  .product-gallery-arrow-next {
    right: 10px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

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

  .photo-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-overlay {
    padding: 20px;
  }

  .search-overlay-close {
    top: 18px;
    right: 18px;
  }

  .search-overlay-field {
    gap: 14px;
    align-items: flex-end;
  }

  .search-overlay-logo {
    width: 82px;
    flex-basis: 82px;
  }

  .search-overlay-input {
    font-size: 18px;
  }

  .zaposlenje-text-col {
    padding: 24px 20px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .quick-grid,
  .post-grid,
  .catalog-grid,
  .catalog-grid--3,
  .catalog-grid--groups,
  .industry-grid,
  .logo-grid,
  .about-iso-grid,
  .engineering-project-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid--groups,
  .catalog-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid--main .catalog-card {
    width: 160px;
    flex: 0 0 160px;
  }

  .product-grid,
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tkb-category-designer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-intro-content h1,
  .about-business-content h2,
  .about-iso-head h2,
  .about-copy h2,
  .about-overview-copy h2 {
    font-size: 28px;
  }

  .about-intro-content p,
  .about-business-content p,
  .about-copy p,
  .about-overview-copy p {
    font-size: 17px;
  }

  .hero,
  .hero-content {
    height: 100vh;
    min-height: 360px;
  }

  .hero-title {
    font-size: 28px;
  }

  .page-hero-news {
    padding: 74px 0 68px;
  }

  .page-hero-news h1 {
    font-size: 34px;
  }

  .page-hero-article-kgh {
    padding: 74px 0 68px;
  }

  .page-hero-article-kgh h1 {
    font-size: 34px;
  }

  .hero-panel {
    padding: 0;
  }

  .hero-mark {
    width: 84px;
  }

  .hero-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-divider {
    display: none;
  }

  .fixed-rail {
    display: none;
  }

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .news-card h2 {
    font-size: 26px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 190px;
  }

  .btn {
    width: 100%;
  }

  .product-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .tkb-category-designer-grid {
    grid-template-columns: 1fr;
  }

  .category-card .product-thumb img {
    height: 210px;
  }
}

.mobile-nav ul,
.mobile-nav li,
.nav-menu,
.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav .submenu {
  position: static;
  display: block;
  min-width: 0;
  box-shadow: none;
  background: transparent;
  padding-left: 18px;
}

.mobile-nav .submenu-link,
.mobile-nav .nav-link {
  font-size: 0.96rem;
}

.mobile-nav li.active > a {
  color: var(--primary);
}

main {
  display: block;
}

.content-block p:last-child,
.article-body p:last-child {
  margin-bottom: 0;
}
