.uhu-hero {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  height: clamp(510px, 69vh, 680px);
  min-height: 510px;
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background: #1a1214;
  box-shadow: 0 22px 60px rgba(26, 18, 20, .18);
}

.uhu-hero-slides,
.uhu-hero-slide,
.uhu-hero-media,
.uhu-hero-media img,
.uhu-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.uhu-hero-slide {
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity .65s ease, visibility .65s ease;
}

.uhu-hero-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.uhu-hero-media img {
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 7s ease;
}

.uhu-hero-slide.is-active .uhu-hero-media img {
  transform: scale(1.08);
}

.uhu-hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 12, 14, .94) 0%, rgba(22, 12, 14, .72) 42%, rgba(22, 12, 14, .12) 78%),
    linear-gradient(0deg, rgba(22, 12, 14, .8) 0%, transparent 48%);
}

.uhu-hero-content {
  position: absolute;
  z-index: 2;
  bottom: 74px;
  left: clamp(28px, 6vw, 84px);
  max-width: min(700px, calc(100% - 100px));
}

.uhu-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #ffb3b4;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.uhu-hero-kicker::before {
  content: "";
  width: 31px;
  height: 2px;
  background: #fc6668;
}

.uhu-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.uhu-hero-category {
  color: #fff;
  font-weight: 700;
}

.uhu-hero-title {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.uhu-hero-title a {
  color: inherit;
  text-decoration: none;
}

.uhu-hero-excerpt {
  max-width: 620px;
  margin: 17px 0 23px;
  color: rgba(255, 255, 255, .82);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.uhu-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 4px;
  color: #fff;
  background: #fc6668;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.uhu-hero-cta:hover,
.uhu-hero-cta:focus {
  color: #fff;
  background: #e84f52;
  transform: translateY(-2px);
}

.uhu-hero-controls {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 4vw, 55px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.uhu-hero-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: #fff;
  background: rgba(22, 12, 14, .42);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .18s ease, border-color .18s ease;
}

.uhu-hero-arrow:hover,
.uhu-hero-arrow:focus {
  border-color: #fff;
  background: rgba(22, 12, 14, .78);
}

.uhu-hero-dots {
  display: flex;
  gap: 8px;
  margin-right: 7px;
}

.uhu-hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.uhu-hero-dot.is-active {
  width: 28px;
  background: #fc6668;
}

.bloglo-article.uhu-slider-featured,
.uhu-slider-featured-wrap {
  display: none;
}

@media (max-width: 760px) {
  .uhu-hero {
    width: calc(100% - 24px);
    height: 610px;
    margin-top: 18px;
    border-radius: 14px;
  }

  .uhu-hero-shade {
    background: linear-gradient(0deg, rgba(22, 12, 14, .96) 0%, rgba(22, 12, 14, .72) 55%, rgba(22, 12, 14, .15) 100%);
  }

  .uhu-hero-content {
    right: 22px;
    bottom: 95px;
    left: 22px;
    max-width: none;
  }

  .uhu-hero-title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .uhu-hero-excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .uhu-hero-controls {
    right: 21px;
    bottom: 28px;
    left: 21px;
    justify-content: flex-end;
  }

  .uhu-hero-dots {
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .uhu-hero-slide,
  .uhu-hero-media img {
    transition: none;
  }
}

.uhu-contact {
  padding: 56px 0 40px;
}

.uhu-contact-intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.uhu-contact-eyebrow {
  display: inline-block;
  margin-bottom: 11px;
  color: #fc6668;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.uhu-contact-intro h1 {
  margin: 0 0 15px;
  color: #1a1214;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.uhu-contact-intro p {
  margin: 0;
  color: #5f5557;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.uhu-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.uhu-contact-card {
  padding: 28px;
  border: 1px solid #ead9da;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(26, 18, 20, .06);
}

.uhu-contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 19px;
  border-radius: 10px;
  color: #fc6668;
  background: #ffe8e9;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.uhu-contact-card h2 {
  margin: 0 0 8px;
  color: #1a1214;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.uhu-contact-card p {
  min-height: 42px;
  margin: 0 0 12px;
  color: #6f6466;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.uhu-contact-card a {
  color: #e84f52;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.uhu-contact-card a:hover {
  color: #c93d40;
}

.uhu-contact-office {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 34px;
  margin-top: 22px;
  padding: 34px;
  border-radius: 12px;
  color: #f2d6d7;
  background: #1a1214;
}

.uhu-contact-office h2 {
  margin: 0 0 9px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.uhu-contact-office p {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.uhu-contact-office a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 760px) {
  .uhu-contact {
    padding-top: 36px;
  }

  .uhu-contact-grid,
  .uhu-contact-office {
    grid-template-columns: 1fr;
  }

  .uhu-contact-office {
    gap: 22px;
  }

  .uhu-contact-card p {
    min-height: 0;
  }
}

.uhu-article-image {
  margin: 1.6em 0 1.8em;
}

.uhu-article-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.uhu-article-image figcaption {
  margin-top: .7em;
  color: #6f6466;
  font-size: 14px;
  line-height: 1.5;
}

.uhu-table-wrap {
  overflow-x: auto;
  margin: 1.4em 0 1.8em;
}

.uhu-fuel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.uhu-fuel-table th,
.uhu-fuel-table td {
  padding: .75em 1em;
  border-bottom: 1px solid #ead9da;
  text-align: left;
}

.uhu-fuel-table th {
  color: #1a1214;
  background: #fff4f4;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.uhu-fuel-table td:last-child,
.uhu-fuel-table th:last-child {
  text-align: right;
}

.entry-content .uhu-fuel-table strong {
  font-weight: 700;
}
