.gw-hero-home {
  position: relative;
}

.gw-hero-home .gw-hero-media {
  background: #fff;
  border: 1px solid var(--gw-border);
  border-radius: var(--gw-radius);
  padding: 10px;
}

.gw-hero-home .gw-hero-media img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.gw-hero-about {
  background: linear-gradient(120deg, #f7fcf8 0%, #eaf6ed 100%);
  border-bottom: 1px solid var(--gw-border);
}

.gw-hero-about .gw-kicker,
.gw-hero-about h1,
.gw-hero-about p {
  color: inherit;
}

.gw-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.gw-chip {
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: #edf6ef;
  color: #346147;
  font-size: 13px;
  font-weight: 700;
}

.gw-chip.is-active {
  background: #d9f0df;
  color: var(--gw-primary);
}

.gw-list {
  margin: 0;
  padding-left: 20px;
}

.gw-list li {
  margin: 8px 0;
  color: var(--gw-text-muted);
}

.gw-timeline {
  margin: 0;
  padding-left: 20px;
}

.gw-timeline li {
  margin: 12px 0;
  color: var(--gw-text-muted);
}

.gw-news-list-full .gw-news-item {
  cursor: default;
}

.gw-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gw-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gw-form label {
  display: block;
}

.gw-form label.is-full {
  grid-column: 1 / -1;
}

.gw-form span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #4f6a58;
}

.gw-form input,
.gw-form textarea {
  width: 100%;
  border: 1px solid var(--gw-border);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gw-text);
}

.gw-form input:focus,
.gw-form textarea:focus {
  outline: none;
  border-color: var(--gw-primary);
  box-shadow: 0 0 0 3px rgba(46, 155, 84, 0.15);
}

.gw-form button {
  width: 140px;
}

@media (max-width: 991px) {
  .gw-contact-grid,
  .gw-form {
    grid-template-columns: 1fr;
  }
}
