﻿.home-astro-page > my-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 0;
  z-index: 30;
}

.home-astro-page > my-header .header {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent !important;
}
.home-astro-page .header {
  color: #fff;
  z-index: 20;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.home-astro-page .header .logo img.black {
  opacity: 0;
}

.home-astro-page .header .logo img.white {
  opacity: 1;
}

.home-astro-page .header .header-r {
  color: #fff;
}

.home-astro-page .header .nav>li>a::before {
  background: #fff;
}

.home-astro-page .header.mobile {
  background-image: none;
}
.home-astro {
  background: #f7f4ef;
  color: #1c2a22;
}

.astro-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 0 7vw 12vh;
}

.astro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.24) 28%, rgba(0, 0, 0, 0.52) 100%);
}

.astro-hero > div {
  position: relative;
  max-width: 820px;
  color: #fff;
}

.astro-hero p {
  font-size: 15px;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.astro-hero h1 {
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  font-weight: 500;
  margin-bottom: 34px;
}

.astro-hero a,
.astro-heading a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: inherit;
  border-bottom: 1px solid currentColor;
}

.astro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 360px;
}

.astro-grid a {
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-position: center;
  background-size: cover;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.astro-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.astro-grid span {
  position: relative;
  font-size: 22px;
  line-height: 1.2;
}

.astro-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 78px 24px;
}

.astro-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.astro-heading h2 {
  font-size: 42px;
  font-weight: 500;
}

.astro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.astro-cards a {
  color: #1c2a22;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  min-height: 100%;
}

.astro-cards img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.astro-cards strong,
.astro-cards span {
  display: block;
  padding: 0 20px;
}

.astro-cards strong {
  min-height: 76px;
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.28;
}

.astro-cards span {
  padding-bottom: 22px;
  color: #657268;
}

@media (max-width: 900px) {
  .astro-grid,
  .astro-cards {
    grid-template-columns: 1fr;
  }

  .astro-grid {
    min-height: auto;
  }

  .astro-grid a {
    min-height: 220px;
  }

  .astro-section {
    padding: 54px 18px;
  }

  .astro-heading {
    align-items: start;
    flex-direction: column;
  }
}



