:root {
  --wur-green-900: #0a5f2c;
  --wur-green-700: #15803d;
  --wur-green-500: #22a146;
  --wur-blue-900: #002b47;
  --wur-teal-100: #e9f7f0;
  --wur-teal-050: #fbf6e5;
  --text-main: #1d2a24;
  --text-soft: #4b5b53;
  --geoserver-blue-900: #005a7b;
  --geoserver-blue-700: #0092c8;
  --line: #d6e6dc;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(7, 43, 21, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text-main);
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 0%, #f5fff8 0%, transparent 40%),
    radial-gradient(circle at 90% 0%, #eefbf2 0%, transparent 45%),
    linear-gradient(180deg, #f7fcf9 0%, #f2f8f4 100%);
}

a {
  color: var(--wur-green-900);
  text-underline-offset: 2px;
}

a:hover {
  color: var(--wur-green-700);
}

.wur-header {
  background: linear-gradient(120deg, var(--geoserver-blue-900), var(--geoserver-blue-700));
  color: var(--white);
  padding: 1.2rem 1.2rem;
  border-bottom: 6px solid #8bc34a;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.wur-logo {
  flex-shrink: 0;
  height: 60px;
  width: auto;
  display: block;
  border: none;
  outline: none;
  background: transparent;
}

.wur-header-text {
  flex: 1;
}

.wur-header h1 {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.wur-header p {
  margin: 0.4rem 0 0;
  opacity: 0.92;
}

.wur-container {
  width: min(1100px, 92vw);
  margin: 1.25rem auto 2.5rem;
  background: var(--wur-teal-050);
}

.wur-card {
  background: var(--wur-teal-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(0.9rem, 2.2vw, 1.35rem);
  box-shadow: var(--shadow);
}

.wur-muted {
  color: var(--text-soft);
}

.wur-backlink {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

h2,
h3 {
  color: #0d4f28;
  margin-top: 1.4rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0.6rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--wur-teal-100);
  color: #18492c;
}

tr:nth-child(even) td {
  background: #fcfffd;
}

iframe {
  width: 100%;
  border: 1px solid #cfe4d6;
  border-radius: 10px;
  background: #fff;
}

.wur-frame {
  min-height: 480px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #d6e6dc;
}

ul {
  padding-left: 1.2rem;
}

.wur-footer {
  background: var(--wur-blue-900);
  color: var(--white);
  padding: 2.5rem 1.2rem;
  margin-top: 3rem;
  text-align: center;
}

.wur-footer-top-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.wur-footer-top-links li {
  display: inline;
}

.wur-footer-top-links a {
  color: var(--white);
  text-decoration: underline;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.wur-footer-top-links a:hover {
  opacity: 1;
  color: var(--white);
}

.wur-footer-logo {
  height: 50px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0.9;
  border: none;
  outline: none;
  background: transparent;
}

.wur-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.wur-footer-links li {
  display: inline;
}

.wur-footer-links a {
  color: var(--white);
  text-decoration: underline;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.wur-footer-links a:hover {
  opacity: 1;
  color: var(--white);
}

@media (max-width: 760px) {
  body {
    font-size: 0.97rem;
  }

  .wur-header {
    padding: 1rem;
  }

  .wur-container {
    width: min(96vw, 1100px);
  }

  th,
  td {
    font-size: 0.93rem;
  }

  .wur-frame {
    min-height: 360px;
  }

  .wur-footer {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }

  .wur-footer-logo {
    height: 40px;
    margin-bottom: 1rem;
  }

  .wur-footer-links {
    gap: 1rem;
    font-size: 0.88rem;
    flex-direction: column;
    align-items: center;
  }

  .wur-footer-top-links {
    gap: 1rem;
    font-size: 0.88rem;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
  }
}