section.award-hero {
  height: 100vh;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("img/hero-awards.jpg") center center / cover no-repeat;
}

section.award-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust darkness here */
  z-index: 1;
}

/* make sure content stays above overlay */
section.award-hero > * {
  position: relative;
  z-index: 2;
}

.award-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-container {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;

  padding: 0 20px; /* 🔹 tilføjer luft fra siderne */
  box-sizing: border-box; /* sikrer at padding tæller med i bredden */
}

.award-container.reverse {
  flex-direction: row-reverse;
}

.award-text {
  flex: 1 1 450px;
}

.award-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #232c3d;
}

.award-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.award-text .highlight,
.award-text .award-extra-highlight {
  color: #82be53;
  font-weight: 600;
}

.award-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.badges span {
  background: #82be53;
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.award-source-label {
  text-align: center;
  font-size: 0.85rem;
  color: #939393;
  margin: 0 0 0.5rem 0;
}

/* -------------------------
   LINKEDIN SECTION
-------------------------- */

/* -------------------------
   LINKEDIN SECTION (NO LOGO)
-------------------------- */
section.linkedin {
  width: 100%;
  background-color: #76baff;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
}

.linkedin-header-container {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.linkedin-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
}

.linkedin-subtitle {
  font-size: 1rem;
  color: #e6e6e6;
  line-height: 1.6;
}

/* BUTTON */
.linkedin-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background-color: #228efa; /* LinkedIn blue */
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  transition:
    background 0.3s,
    transform 0.2s;
}

.linkedin-btn:hover {
  background-color: #3181e2;
  transform: translateY(-2px);
}

/* -------------------------
   MOBILE RESPONSIVE
-------------------------- */
@media (max-width: 768px) {
  section.linkedin {
    padding: 60px 15px;
  }

  .linkedin-title {
    font-size: 2rem;
  }

  .linkedin-subtitle {
    font-size: 0.95rem;
  }

  .linkedin-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .award-container,
  .award-container.reverse {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px; /* ligesom første award-section */
    box-sizing: border-box;
  }

  .award-text,
  .award-image {
    flex: 1 1 100%; /* fylder hele bredden */
    max-width: 100%; /* forhindrer overflow */
  }

  /* hvis du vil have lidt luft til billederne */
  .award-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .award-text h2 {
    font-size: 24px; /* mindre overskrift på mobil */
    line-height: 1.3; /* bedre læsbarhed */
    word-break: break-word; /* sikrer, at lange ord ikke stikker ud */
    margin-bottom: 15px; /* lidt mindre spacing under */
  }

  .award-text p {
    font-size: 14px; /* mindre tekst på mobil */
    line-height: 1.5;
  }
}
