.navbar {
  font-family: inherit;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.navbar__logo {
  display: block;
  height: 44px;
  width: auto;
}

/* Right-side actions in the top navbar row */
.navbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 28px;
  border: 1px solid #5EAF6B;
  text-decoration: none;
  color: #ffffff;
  background: #5EAF6B;
  font-weight: 700;
}

.cta-pill:hover,
.cta-pill:focus-visible {
  background: #55a764;
  border-color: #55a764;
}

.button--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-button-y) var(--space-button-x);
  border-radius: var(--radius-button);
  background-color: var(--color-cta-primary);
  color: var(--color-cta-text-on-dark);
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--color-cta-primary);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.button--cta:hover,
.button--cta:focus-visible {
  background-color: var(--color-cta-primary-hover);
  color: var(--color-cta-text-on-light);
  border-color: var(--color-cta-primary-hover);
}

.navbar .button--cta {
  background-color: #5EAF6B;
  color: #ffffff;
  border-color: #5EAF6B;
}

.navbar .button--cta:hover,
.navbar .button--cta:focus-visible {
  background-color: #55a764;
  color: #ffffff;
  border-color: #55a764;
}

.cta-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  padding: 0.15rem 0;
  border-radius: 0.35rem;
  transition: text-decoration-color 0.15s ease, transform 0.15s ease;
}

.cta-text::after {
  content: "→";
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.15s ease;
}

.cta-text:hover,
.cta-text:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cta-text:hover::after,
.cta-text:focus-visible::after {
  transform: translateX(4px);
}

.cta-text:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.page-home .main .cta-text:hover::after,
.page-home .main .cta-text:focus-visible::after {
  color: #1a502c;
}

.page-home .main .card:hover .card-arrow,
.page-home .main .card:focus-visible .card-arrow {
  color: #5EAF6B;
}

.button--cta[aria-disabled="true"],
.button--cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hamburger {
  width: 44px;
  height: 36px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hamburger__icon {
  display: block;
  width: 30px;
  height: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 0.2px;
  color: inherit;
  font-weight: 700;
}

.nav-links a:hover {
  color: #5aa463;
  background: #ffffff;
}

.nav-search {
  position: relative;
  width: 32px;
  height: 32px;
}

.search-field {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 36px;
  border-radius: 999px;
  background: transparent;
  transition: width 200ms ease, background 200ms ease;
}

.search-input {
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 8px 14px 8px 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition: opacity 200ms ease, border-color 200ms ease;
  pointer-events: none;
  outline: none;
}

.nav-search:hover .search-field,
.nav-search:focus-within .search-field {
  width: 260px;
  background: #f5f3f2;
}

.nav-search:hover .search-input,
.nav-search:focus-within .search-input {
  opacity: 1;
  border-color: #e6e6e6;
  pointer-events: auto;
}

.nav-search:focus-within .search-input {
  border-color: #5EAF6B;
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #5EAF6B;
}

.search-button {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  padding: 0;
  z-index: 1;
}

.search-icon {
  width: 14px;
  height: 14px;
  border: 2px solid #666666;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: #666666;
  right: -6px;
  bottom: -4px;
  transform: rotate(45deg);
}

/* Hero text stays left-aligned */
.hero__content {
  display: grid;
  gap: 12px;
}

.hero__eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.hero__title {
  margin: 0;
  font-size: 28px;
}

.hero__summary {
  margin: 0;
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.menu-overlay {
  position: absolute;
  inset: 0;
  z-index: 999;
  display: none;
  pointer-events: none;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
}

.menu-shell {
  position: relative;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 200px 24px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  pointer-events: none;
}

.menu-panel {
  width: 360px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
  pointer-events: auto;
  margin-top: 0;
  transform: translateX(16px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-panel-inner {
  padding: 18px 18px 22px;
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* CSS-only menu visibility */
#menu-toggle:checked ~ .menu-overlay {
  display: block;
  pointer-events: auto;
}

#menu-toggle:checked ~ .menu-overlay .menu-panel {
  transform: translateX(0);
  opacity: 1;
}

.menu-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #c7e0cf;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.menu-panel__title {
  margin: 0;
  font-size: 20px;
}

.menu-panel__close {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.menu-item {
  display: grid;
  grid-template-columns: 32px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f5f3f2;
  text-decoration: none;
  color: inherit;
}

.menu-item__icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

/* Wrapper för ikon: låser storlek och ger grön bakgrund för huvudkategorier. */
.menu-item__icon-wrap {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-item__icon-wrap--accent {
  background: #5EAF6B;
  border-radius: 8px;
}

/* Vit ikon mot grön bakgrund (på själva bilden). */
.menu-item__icon--accent {
  filter: brightness(0) invert(1);
}

.menu-item__chevron {
  font-size: 18px;
  text-align: right;
}

.menu-panel__section {
  border-top: 2px solid #c7e0cf;
  padding-top: 16px;
}

.menu-panel__subtitle {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #5eaf6b;
}

/* Reset för klickbara placeholders som renderas som button i prototypen. */
:where(button.card-link),
:where(button.podcast-card),
:where(button.upcoming-item),
:where(button.latest-item),
:where(button.most-item),
:where(button.podcast-item),
:where(button.author-item),
:where(button.job-item) {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.card {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  position: relative;
  width: 100%;
  background: #f3f3f3;
}

.card--top .card-media {
  aspect-ratio: 16 / 9;
}

.card--small .card-media {
  aspect-ratio: 3 / 2;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms ease;
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e1b658;
  color: #ffffff;
  border: 1px solid #e1b658;
  font-size: 12px;
  font-weight: 600;
}

.card-badge.is-hidden {
  display: none;
}

.card-body {
  padding: 16px 16px 0;
}

.card-title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-weight: 700;
  transition: color 200ms ease;
}

.card-excerpt {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
}

.card--top .card-title {
  font-size: 32px;
  line-height: 1.15;
}

.card--top .card-excerpt {
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card--small .card-title {
  font-size: 18px;
  line-height: 1.25;
}

.card--small .card-excerpt {
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 16px 16px;
}

.card-arrow {
  font-size: 18px;
}

.card-link {
  text-decoration: none;
  color: inherit;
}


.sidebar {
  display: grid;
  gap: var(--space-7);
  align-content: start;
  grid-auto-rows: max-content;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
}

.sidebar ul,
.sidebar ol {
  margin: 0;
  padding-left: 0;
}

.sidebar.no-upcoming .sidebar-block--upcoming {
  display: none;
}

.sidebar-block {
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: var(--space-5);
  background: #ffffff;
  align-self: start;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.sidebar-block__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
}

.sidebar-accent {
  height: 2px;
  width: 80pxcta-pill ;
  background: #5EAF6B;
  margin-bottom: var(--space-4);
}

.sidebar-banner {
  border-radius: 12px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upcoming-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
}

.upcoming-list li + li {
  border-top: 1px solid #e6e6e6;
 margin-top: -20px;
  padding-top: var(--space-3);
}

.upcoming-item {
  display: grid;
  grid-template-columns: var(--sidebar-thumb) 1fr;
  gap: var(--space-4);
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding: var(--space-2);
  border-radius: 12px;
  transition: background 180ms ease;
}

.upcoming-item:hover,
.upcoming-item:focus-visible {
  background: #f5f3f2;
}

.upcoming-date {
  border: 1px solid #e1b658;
  border-radius: 12px;
  padding: 8px 6px;
  text-align: center;
  background: #fafafa;
}

.upcoming-month {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e1b658;
  opacity: 0.75;
}

.upcoming-day {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #e1b658;
  opacity: 0.85;
}

.upcoming-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.upcoming-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.upcoming-time {
  font-size: 12px;
  opacity: 0.7;
}

.latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
}

.latest-list[data-count="4"] li:nth-child(n+5) {
  display: none;
}

.latest-list[data-count="5"] li:nth-child(n+6) {
  display: none;
}

.latest-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--space-3);
  align-items: start;
}

.latest-number {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 400;
  color: #c2c2c2;
  line-height: 1;
  padding-top: 4px;
}

.latest-item {
  display: grid;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  padding: var(--space-2);
  border-radius: 10px;
  transition: background 180ms ease;
}

.latest-item:hover,
.latest-item:focus-visible {
  background: #f5f3f2;
}

.latest-title {
  font-size: 15px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.most-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.most-item {
  display: grid;
  grid-template-columns: 112px 1fr 16px;
  gap: var(--space-3);
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: var(--space-2);
  border-radius: 12px;
  border: 0;
  background: transparent;
  transition: background 180ms ease;
}

.most-item:hover,
.most-item:focus-visible {
  background: #f5f3f2;
}

.most-list li + li {
  border-top: 1px solid #eeeeee;
  padding-top: var(--space-3);
}

.most-media {
  width: 112px;
  aspect-ratio: 112 / 60;
  border-radius: 10px;
  background: #e6e6e6;
  overflow: hidden;
}

.most-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.most-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.most-arrow {
  font-size: 16px;
  opacity: 0.6;
  display: none;
}

.podcast-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.podcast-list li + li {
  border-top: 1px solid #e6e6e6;
  padding-top: var(--space-3);
}

.podcast-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
  padding: var(--space-3) 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.podcast-item:hover,
.podcast-item:focus-visible {
  background: #f5f3f2;
}

.podcast-body {
  display: grid;
  gap: 4px;
}

.podcast-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-title);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-meta {
  font-size: 12px;
  opacity: 0.7;
}

.podcast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #5EAF6B;
  display: none;
}

.podcast-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.podcast-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  background: transparent;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  margin-top: var(--space-3);
  box-sizing: border-box;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.podcast-cta:hover,
.podcast-cta:focus-visible {
  background: #5EAF6B;
  color: #ffffff;
  border-color: #5EAF6B;
}

.authors-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.author-item {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: var(--space-4) 0;
  transition: background 180ms ease;
  border-radius: 12px;
}

.author-item:hover,
.author-item:focus-visible {
  background: #f5f3f2;
}

.authors-list li + li {
  border-top: 1px solid #eeeeee;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  background: #e6e6e6;
  flex: 0 0 auto;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-name {
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 18px;
}

.author-role {
  font-size: 13px;
  opacity: 0.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.authors-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  background: transparent;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  margin-top: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-sizing: border-box;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.authors-cta:hover,
.authors-cta:focus-visible {
  background: #5EAF6B;
  color: #ffffff;
  border-color: #5EAF6B;
}

.sidebar-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.sidebar-partner {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(94, 175, 107, 0.12);
  color: #3a7a47;
  font-weight: 600;
  white-space: nowrap;
}

.jobs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.job-item {
  display: grid;
  grid-template-columns: 74px 1fr 16px;
  gap: var(--space-3);
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding: var(--space-3);
  border-radius: 10px;
  border: 1px solid #ededed;
  background: #ffffff;
  transition: background 180ms ease;
}

.job-item:hover,
.job-item:focus-visible {
  background: #f5f3f2;
}

.job-logo {
  width: 74px;
  height: 38px;
  border-radius: 8px;
  background: #e6e6e6;
  overflow: hidden;
}

.job-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.job-title {
  font-size: 16px;
  font-weight: 700;
}

.job-company {
  font-size: 12px;
  opacity: 0.65;
  margin-bottom: 4px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
  margin-bottom: 0;
}

.job-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 0;
  font-size: 11px;
  opacity: 0.7;
  max-width: 100%;
  white-space: nowrap;
}

.job-icon {
  font-size: 12px;
}

.job-arrow {
  font-size: 14px;
  opacity: 0.45;
}

.jobs-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  margin-top: var(--space-3);
  box-sizing: border-box;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.block-podcast .block-title {
  font-family: var(--font-title);
  font-size: 28px;
  text-align: center;
  margin: 0 0 var(--space-5);
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6) var(--space-6);
}

.podcast-card {
  display: grid;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
}

.podcast-card__media {
  border-radius: 16px;
  overflow: hidden;
  background: #e6e6e6;
  aspect-ratio: 16 / 9;
}

.podcast-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms ease;
}

.podcast-card__title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: color 200ms ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-card:hover .podcast-card__media img {
  transform: scale(1.03);
}

.podcast-card:hover .podcast-card__title {
  color: #5EAF6B;
}

.podcast-section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  background: transparent;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  width: fit-content;
  margin: var(--space-6) auto 0;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.podcast-section-cta:hover,
.podcast-section-cta:focus-visible {
  background: #5EAF6B;
  color: #ffffff;
  border-color: #5EAF6B;
}

.newsletter {
  /* Fullbredd-bakgrund; innehållet centreras via .container i HTML. */
  margin: var(--space-9) 0 0;
  background: #f5f3f2;
  padding: var(--space-8) 0;
}

.newsletter__panel {
  padding: 0 var(--space-7);
  text-align: center;
}

.newsletter__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
}

.newsletter__intro {
  margin: 0 auto var(--space-6);
  max-width: 700px;
  color: #6b7280;
}

.newsletter__form {
  display: grid;
  gap: var(--space-4);
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.newsletter__label {
  font-size: 14px;
  font-weight: 600;
}

.newsletter__input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  font-size: 16px;
}

.newsletter__input:focus {
  outline: none;
  border-color: #5EAF6B;
}

.newsletter__consent {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 14px;
}

.newsletter__checkbox {
  width: 18px;
  height: 18px;
  accent-color: #5EAF6B;
}

.newsletter__button {
  justify-self: start;
  padding: 10px 22px;
  border-radius: 10px;
  border: 0;
  background: #5EAF6B;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.newsletter__button:hover,
.newsletter__button:focus-visible {
  background: #55a764;
}

.newsletter__note {
  margin: var(--space-5) 0 0;
  color: #6b7280;
}

.site-footer {
  background: #d9d9d9;
  /* Ingen toppmarginal: ska ligga direkt efter newsletter-bakgrunden. */
  margin-top: 0;
}

.site-footer__inner {
  padding: var(--space-8) 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: var(--space-7);
  align-items: start;
}

@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    row-gap: var(--space-6);
  }

  .footer-col--social {
    justify-content: flex-start;
  }
}

.footer-col {
  display: grid;
  gap: var(--space-4);
}

.footer-link {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-link:focus-visible,
.footer-link:hover {
  text-decoration: underline;
}

.footer-col--social {
  display: inline-flex;
  gap: var(--space-4);
  justify-content: flex-end;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #6b6b6b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
}

.social-icon:hover,
.social-icon:focus-visible {
  opacity: 0.85;
}

.jobs-cta:hover,
.jobs-cta:focus-visible {
  background: #5EAF6B;
  color: #ffffff;
  border-color: #5EAF6B;
}

/* Hover: subtle image zoom + title accent */
.card:hover .card-media img {
  transform: scale(1.03);
}

.card:hover .card-title {
  color: #5EAF6B;
}

.card-meta {
  font-family: var(--font-body);
  font-weight: 400;
}

.card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
}

.cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1a502c;
  flex: 0 0 auto;
}

.cat-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.85;
  color: #1a502c;
}
