body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f4f6f8;
  padding-top: 120px; /* plads til fixed header */
}

/* INDHOLD */
.artikel-wrapper {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #2c3e50;
}

.intro {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

/* Alfabet navigation */
.alphabet-nav {
  text-align: center;
  margin-bottom: 30px;
}

.alphabet-nav a {
  display: inline-block;
  margin: 4px;
  padding: 8px 12px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.alphabet-nav a:hover {
  background: #2980b9;
}

/* Bogstav sektion */
.letter-section {
  margin-bottom: 35px;
}

.letter-section h3 {
  border-bottom: 2px solid #3498db;
  padding-bottom: 6px;
  color: #2c3e50;
}

.letter-section ul {
  list-style: none;
  padding: 0;
  columns: 2;
}

.letter-section li {
  margin: 6px 0;
}

.letter-section a {
  text-decoration: none;
  color: #3498db;
  font-weight: 500;
}

.letter-section a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .letter-section ul {
    columns: 1;
  }
}
