:root {
  --navy: #071d36;
  --navy-2: #0e3154;
  --blue: #14527f;
  --ink: #142131;
  --muted: #647386;
  --line: #dbe4ef;
  --line-dark: rgba(255, 255, 255, .16);
  --soft: #f3f6f9;
  --soft-2: #e9f0f6;
  --white: #ffffff;
  --orange: #f47c20;
  --orange-2: #ffab58;
  --green: #159b66;
  --shadow: 0 24px 60px rgba(12, 31, 52, .14);
  --shadow-soft: 0 14px 36px rgba(12, 31, 52, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fbfcfe;
  line-height: 1.65;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, calc(100% - 44px));
  margin: 0 auto;
}

.section { padding: 96px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-heading h2,
.copy-block h2,
.contact-info h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  color: var(--navy);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.topbar {
  position: relative;
  z-index: 31;
  background: var(--navy);
  color: #c7d5e5;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}
.topbar a {
  color: var(--white);
  margin-left: 18px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 15px max(22px, calc((100vw - 1200px) / 2));
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(219, 228, 239, .78);
  box-shadow: 0 12px 34px rgba(9, 31, 54, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 900;
  color: var(--navy);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--orange), #ffba70 42%, var(--navy) 43%),
    var(--navy);
  box-shadow: 0 12px 26px rgba(244, 124, 32, .28);
}
.brand img,
.custom-logo {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 54px;
}
.brand-text { font-size: 20px; }
.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: #283c52;
}
.main-nav,
.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav li {
  position: relative;
  margin: 0;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 10px 11px;
  border-radius: 999px;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--navy);
  background: #eef4fa;
}
.nav-products::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  min-width: 250px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .sub-menu a {
  display: flex;
  width: 100%;
  border-radius: 10px;
}
.header-actions { display: flex; gap: 10px; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11, 35, 65, .14);
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff9a3d);
  color: var(--white);
}
.btn-primary:hover { background: linear-gradient(135deg, #df6911, var(--orange)); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-ghost { border-color: var(--line); color: var(--navy); background: var(--white); }
.btn-outline {
  border-color: rgba(244, 124, 32, .38);
  color: var(--orange);
  background: #fff8f2;
}
.btn-whatsapp { background: var(--green); color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 29, 54, .98) 0%, rgba(7, 29, 54, .9) 45%, rgba(7, 29, 54, .48) 100%),
    url("assets/home-banner-plain.jpg") center/cover;
  transform: scale(1.02);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.72) 48%, transparent 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 810px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #e8f1fb;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.hero h1 {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .99;
  color: var(--white);
}
.hero-text {
  max-width: 670px;
  margin: 0 0 32px;
  color: #dce8f5;
  font-size: 20px;
}
.hero-panel {
  display: grid;
  gap: 16px;
}
.hero-card,
.hero-stats,
.hero-mini-grid {
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07));
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  border-radius: 16px;
}
.hero-card { padding: 30px; }
.hero-card span {
  display: block;
  color: #ffd1a9;
  font-weight: 900;
  margin-bottom: 10px;
}
.hero-card strong {
  display: block;
  font-size: 30px;
  line-height: 1.12;
}
.hero-card p {
  margin: 16px 0 0;
  color: #d8e4f0;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.hero-stats span {
  padding: 24px;
  color: #d7e4f0;
}
.hero-stats span + span { border-left: 1px solid rgba(255,255,255,.14); }
.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
}
.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}
.hero-mini-grid span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  background: rgba(7, 29, 54, .36);
  color: #edf5ff;
  text-align: center;
  font-size: 13px;
  font-weight: 850;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding-bottom: 34px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--line);
  box-shadow: var(--shadow);
}
.trust-grid div {
  padding: 24px;
  background: var(--white);
}
.trust-grid strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
}
.trust-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.reverse { grid-template-columns: 1fr .9fr; }
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.image-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 116px;
  height: 116px;
  border: 18px solid rgba(244, 124, 32, .92);
  border-radius: 18px;
}
.image-card img {
  height: 490px;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
}
.copy-block p {
  color: var(--muted);
  font-size: 16px;
}
.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}
.about-points span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 850;
}

.counters {
  padding: 46px 0;
  background: linear-gradient(180deg, var(--soft), #fff);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.counter-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: left;
  box-shadow: var(--shadow-soft);
}
.counter-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--orange), var(--orange-2));
}
.counter-card strong {
  display: block;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
}
.counter-card span {
  display: block;
  margin-top: 10px;
  font-weight: 850;
  color: var(--muted);
}

.partners,
.clients {
  background:
    radial-gradient(circle at top right, rgba(20, 82, 127, .08), transparent 34%),
    var(--white);
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.logo-card {
  position: relative;
  min-height: 104px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-weight: 900;
}
.logo-card::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(244, 124, 32, .1);
}
.logo-card span { position: relative; }
.logo-card img {
  position: relative;
  z-index: 1;
  max-width: 180px;
  max-height: 76px;
  object-fit: contain;
}
.compact .logo-card { min-height: 86px; }

.solutions {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 54, .98), rgba(14, 49, 84, .96)),
    var(--navy);
}
.solutions::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
}
.solutions .container { position: relative; z-index: 1; }
.solutions h2 { color: var(--white); }
.solutions .copy-block p { color: #cbd8e6; }
.check-list {
  padding: 0;
  margin: 26px 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: #e6eef7;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--white) 0 3px, var(--orange) 4px);
}
.solution-panel {
  display: grid;
  gap: 16px;
}
.solution-panel div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.solution-panel span {
  grid-row: span 2;
  color: var(--orange-2);
  font-size: 26px;
  font-weight: 950;
}
.solution-panel strong { align-self: end; font-size: 20px; }
.solution-panel small { color: #bfd0df; font-size: 14px; }

.why {
  background:
    linear-gradient(180deg, #f8fafc, var(--soft));
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 124, 32, .38);
  box-shadow: var(--shadow);
}
.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff2e8, #ffe0c2);
  color: var(--orange);
  font-weight: 950;
}
.feature-card h3,
.product-card h3,
.site-footer h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  line-height: 1.2;
}
.feature-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
}

.portfolio {
  background: var(--white);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 82, 127, .32);
  box-shadow: var(--shadow);
}
.product-card img {
  height: 220px;
  object-fit: cover;
  background: var(--soft);
  filter: saturate(.9) contrast(1.03);
}
.product-card div { padding: 26px; }
.card-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef5fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.product-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 950;
}
.product-card a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.contact-cta {
  padding: 66px 0;
  background:
    linear-gradient(135deg, rgba(244,124,32,.92), rgba(20,82,127,.94)),
    var(--blue);
}
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}
.cta-box h2 {
  color: var(--white);
  max-width: 790px;
}

.contact {
  background:
    radial-gradient(circle at left top, rgba(244, 124, 32, .1), transparent 34%),
    var(--soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.contact-info,
.contact-form {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.info-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
}
.info-list p {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
}
.info-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}
.info-list span { display: block; }
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  padding: 14px 15px;
  background: #fbfdff;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(244, 124, 32, .7);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(244, 124, 32, .12);
}
.contact-form textarea { resize: vertical; }

.site-footer {
  background:
    linear-gradient(180deg, #07192e, #04111f);
  color: #c9d5e1;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .9fr .9fr;
  gap: 38px;
}
.footer-brand {
  color: var(--white);
  font-weight: 950;
  font-size: 26px;
  margin-bottom: 12px;
}
.site-footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-top: 0;
}
.site-footer a {
  display: block;
  margin: 8px 0;
  color: #c9d5e1;
}
.site-footer a:hover { color: var(--orange-2); }
.copyright {
  margin-top: 44px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  color: #96a6b8;
}

.content-page {
  background:
    radial-gradient(circle at top right, rgba(20, 82, 127, .08), transparent 32%),
    var(--soft);
}
.content-wrap {
  max-width: 920px;
}
.content-article {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.content-article h1,
.section-heading h1 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
}
.entry-content {
  color: var(--muted);
}
.entry-content a {
  color: var(--orange);
  font-weight: 800;
}
.entry-content img {
  border-radius: 16px;
}
.post-image {
  margin: 28px 0;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.post-card img {
  height: 210px;
  object-fit: cover;
}
.post-card > div {
  padding: 24px;
}
.post-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.18;
}
.read-more {
  display: inline-flex;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 900;
}
.navigation.pagination {
  margin-top: 34px;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-numbers {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 850;
}
.page-numbers.current {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

@media (max-width: 1100px) {
  .main-nav { gap: 2px; font-size: 13px; }
  .header-actions .btn { padding-inline: 14px; }
}

@media (max-width: 980px) {
  .topbar { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .main-nav,
  .main-nav ul,
  .header-actions { display: none; }
  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    justify-self: end;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    font-weight: 900;
  }
  .hero {
    min-height: 720px;
    padding-top: 30px;
  }
  .hero-grid,
  .split,
  .reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel { max-width: 620px; }
  .trust-grid,
  .counter-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }
  .section { padding: 66px 0; }
  .site-header { padding: 12px 14px; }
  .brand-mark {
    width: 42px;
    height: 42px;
  }
  .brand-text { font-size: 18px; }
  .hero {
    min-height: auto;
    padding: 76px 0 56px;
  }
  .hero-grid { gap: 34px; }
  .hero h1 { font-size: 40px; }
  .hero-text { font-size: 17px; }
  .hero-badges span { font-size: 11px; }
  .hero-card,
  .contact-info,
  .contact-form { padding: 22px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats span + span {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .hero-mini-grid { grid-template-columns: 1fr; }
  .button-row,
  .cta-box {
    align-items: stretch;
    flex-direction: column;
  }
  .trust-grid,
  .counter-grid,
  .feature-grid,
  .logo-grid,
  .product-grid,
  .post-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    margin-top: 0;
    padding: 18px 0 0;
    background: var(--soft);
  }
  .image-card img { height: 330px; }
  .product-card img { height: 200px; }
  .solution-panel div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .solution-panel span { grid-row: auto; }
  .content-article { padding: 26px; }
}
