.home {
  position: relative;
  min-height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0 40px;
}

.home::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: none;
  z-index: 0;
}

.home > * {
  position: relative;
  z-index: 1;
}

.home-layout {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  align-items: start;
}

.home-col {
  display: flex;
  justify-content: center;
}

.home-block {
  width: 100%;
  max-width: 360px;
  text-align: center;
  color: #fff;
}

.home-eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.home-title {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.02;
  font-weight: 700;
  color: #fff;
}

.home-media {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-media img[src$=".svg"] {
  object-fit: contain;
  padding: 12px;
}

.home-copy {
  max-width: 330px;
  margin: 0 auto;
}

.home-kicker {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.74);
}

.home-item-title {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
}

.home-meta {
  margin: 0 0 5px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

.home-actions {
  margin-top: 22px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 46px;
  padding: 11px 24px;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-btn:hover,
.home-btn:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  text-decoration: none;
}

.home-btn:active {
  transform: translateY(1px);
}

@media (max-width: 900px) {
  .home {
    align-items: flex-start;
    padding: 40px 0 30px;
  }

  .home-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 520px;
  }

  .home-block {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .home {
    padding: 20px 0 30px;
  }

  .home-layout {
    gap: 30px;
	position: relative;
  }
  
  .home-layout::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  }
  
  .home-layout::after {
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.15),
    transparent
  );
  filter: blur(0.5px);
}
  

  transform: translateX(-50%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .home-layout::after {
    display: none;
  }
}

  .home-title {
    margin-bottom: 16px;
  }

  .home-media {
    width: 82px;
    height: 82px;
    margin-bottom: 16px;
  }

  .home-kicker {
    font-size: 0.9rem;
  }

  .home-item-title {
    font-size: 1.22rem;
  }

  .home-meta {
    font-size: 0.92rem;
  }

  .home-actions {
    margin-top: 16px;
  }

  .home-btn {
    min-width: 200px;
    min-height: 44px;
    padding: 10px 20px;
  }
}