/* ── HERO ── */
.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 4rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green-100) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; left: -40px; bottom: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--lime-400) 0%, transparent 70%);
  opacity: .25;
  border-radius: 50%;
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  font-size: .8rem; font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--green-600); }

.hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.hero-news {
  display: flex;
  flex-direction: column;
}

/* ── INFO STRIP ── */
.info-strip {
  background: var(--green-700);
  color: white;
  padding: 3rem 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.info-strip-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem; font-weight: 800;
  color: var(--lime-400);
  margin-bottom: .3rem;
}

.info-strip-item span {
  font-size: .9rem;
  opacity: .85;
  font-weight: 300;
}

/* ── AKTUALNOŚCI ── */
.news-section {
  padding: 4rem 6rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.news-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.news-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-2px); }

.news-card-img {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.news-card:nth-child(1) .news-card-img { background: var(--green-100); }
.news-card:nth-child(2) .news-card-img { background: #dcfce7; }
.news-card:nth-child(3) .news-card-img { background: #d1fae5; }

.news-card-body { padding: 1.25rem; }

.news-card-date {
  display: inline-block;
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--green-700);
  background: var(--green-100);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: .75rem;
}

.news-card-title { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--gray-900); margin-bottom: .5rem; line-height: 1.4; }
.news-card-body p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .hero-visual { display: none; }
  .info-strip { padding: 2rem; grid-template-columns: 1fr; }
  .news-section { padding: 3rem 2rem; }
}
