/* ————————————————————————
   📋 NYHETSOVERSIKT (LISTEVISNING)
   ———————————————————————— */

/* Kort-oppsett for nyhetslisten */
#nyheter-container .nyhet-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid #ccc;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: white;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

#nyheter-container .nyhet-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#nyheter-container .nyhet-image-wrapper {
  flex: 0 0 200px;
}

#nyheter-container .nyhet-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

#nyheter-container .nyhet-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#nyheter-container .nyhet-title {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

#nyheter-container .nyhet-meta {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: #555;
}

#nyheter-container .nyhet-summary {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Mobiltilpasning for nyhetslisten */
@media (max-width: 700px) {
  #nyheter-container .nyhet-card {
    flex-direction: column;
    align-items: stretch;
  }

  #nyheter-container .nyhet-image-wrapper {
    flex: 0 0 auto;
    width: 100%;
  }

  #nyheter-container .nyhet-image {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: auto;
  }

  #nyheter-container .nyhet-content {
    padding-top: 0.5rem;
  }
}

/* Sidetall-knapper */
.nyheter-pagination {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  gap: 0.5rem;
}

.pagination-button {
  padding: 0.5rem 0.8rem;
  border: 1px solid #ccc;
  background: white;
  border-radius: 4px;
  cursor: pointer;
}

.pagination-button.active {
  background: #007BFF;
  color: white;
  border-color: #007BFF;
}

.pagination-button:hover:not(.active) {
  background: #f5f5f5;
}

/* ————————————————————————
   📰 ENKELTARTIKKEL (DETALJVISNING)
   ———————————————————————— */

/* Wrapper */
.nyhet-artikkel-header {
  display: block;
  margin-bottom: 2rem;
}

/* PC: bilde + tittel side ved side */
.nyhet-artikkel-header .nyhets-header-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.nyhet-artikkel-header .nyhets-header-image {
  width: 300px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.nyhet-artikkel-header .nyhets-header-content {
  flex: 1;
}

.nyhet-artikkel-header .nyhets-header-title {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: bold;
}

.nyhet-artikkel-header .nyhets-header-meta {
  color: #555;
  margin-bottom: 1rem;
}

/* 📱 Mobil: bilde øverst, tekst under */
@media (max-width: 700px) {
  .nyhet-artikkel-header .nyhets-header-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .nyhet-artikkel-header .nyhets-header-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
  }

  .nyhet-artikkel-header .nyhets-header-title {
    font-size: 1.6rem;
  }
}

/* ————————————————————————
   🎨 Felles detaljer
   ———————————————————————— */

.nyhets-header-meta em {
  color: #777;
}

.nyhets-header-content p,
.nyhet-card p {
  color: #222;
}

