﻿.site-header {
  padding: 2rem 2.5rem;
}
.site-header .nav-link {
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
}
.site-header .nav {
  gap: 2rem;
}

.site-header__logo-img {
  height: 2.5rem;
}

.site-footer {
  margin-top: 8rem;
  background-color: #000;
  color: #fff;
  padding: 1rem 0;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
}

.hero {
  margin: 3rem 0;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero__text {
  font-size: 1.25rem;
}

.hero__btn {
  margin-top: 2rem;
}

.hero__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  padding: 0.5rem 1rem;
  background: #DA020E;
  color: #fff;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.2s ease;
}
.skip-link:focus, .skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #DA020E;
  outline-offset: 2px;
}

.cards__item {
  display: block;
  text-decoration: none;
}

.cards__media {
  position: relative;
  overflow: hidden;
  /*   &:after {
      bottom: 0;
      right: 0;
      background: linear-gradient(to left, $black, transparent);
  }*/
}
.cards__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards__item--dark .cards__media:before {
  background: #000;
}

.cards__media {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: radial-gradient(circle at 75% 45%, rgba(255, 170, 210, 0.55), transparent 28%), radial-gradient(circle at 30% 70%, rgba(255, 190, 220, 0.35), transparent 30%), linear-gradient(135deg, #dfe9f7 0%, #cfd9f3 35%, #d9d2f7 65%, #f3d4e6 100%);
}
.cards__media__line {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 18%;
  top: 18%;
}
.cards__media__line::before, .cards__media__line::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0% 72%, 14% 72%, 25% 68%, 38% 52%, 48% 58%, 61% 45%, 69% 35%, 78% 40%, 88% 24%, 100% 4%, 100% 8%, 88% 28%, 78% 44%, 69% 39%, 61% 49%, 48% 62%, 38% 56%, 25% 72%, 14% 76%, 0% 76%);
}
.cards__media__line::before {
  background: linear-gradient(90deg, #ffd8a8, #fff4b0);
  filter: blur(14px);
  opacity: 0.95;
}
.cards__media__line::after {
  background: linear-gradient(90deg, #000, #DA020E);
  filter: drop-shadow(0 0 10px rgba(255, 245, 180, 0.9));
}

.cards__heading {
  line-height: 1;
  margin: 0.75rem 0 0 0;
  font-size: 1rem;
  color: #212529;
}

.cards__text {
  margin: 0.375rem 0 0 0;
  font-size: 0.875rem;
  color: var(--bs-secondary-color);
}

.landing__title, .page__title {
  margin-bottom: 3rem;
}

* + h2, * + h3, * + h4 {
  margin-top: 2rem;
}
