:root {
  /* Colors */
  --color-dark: rgba(33, 33, 33, 1);
  --color-electric-blue: rgba(52, 72, 223, 1);
  --color-white: rgba(255, 255, 255, 1);
  --color-light-grey: rgba(224, 224, 224, 1);
  --color-gradient: linear-gradient(180deg, var(--color-white) 0%, rgba(240, 241, 255, 1) 100%);
  --color-text-gradient: linear-gradient(90deg, #000 10%, var(--color-electric-blue) 85%);

  /* Spacing */
  --space-xxs: 8px;
  --space-xs: 10px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 64px;
  --space-xxl: 80px;

  /* Fonts */
  --font-family-open-sans: "Open Sans", Helvetica;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-semi-bold: 600;

  /* Text Sizes */
  --text-size-sm: 14px;
  --text-size-base: 16px;
  --text-size-lg: 18px;
  --text-size-xl: 24px;
  --text-size-xxl: 36px;
  --text-size-xxxl: 56px;
}

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}
#root, #__next {
  isolation: isolate;
}
html, body {
  margin: 0;
  height: 100%;
  display:block;
  background: #f0f1ff;
  background-image: url("img/background.svg");
  background-image: url("img/background.svg"), linear-gradient(180deg, #ffffff 0%, #f0f1ff 100%);
  background-repeat: repeat-x;
  background-size: 43%;
  background-position: center;
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

/* General Styles */
.manifesto-page {
  max-width: 1280px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xxl) 160px;
  text-align: center;
}

.headline {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}

.headline h1 {
  background: var(--color-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-family-open-sans);
  font-weight: var(--font-weight-semi-bold);
  font-size: var(--text-size-xxxl);
  letter-spacing: -0.84px;
  line-height: 1.1;
}

.subtitle {
  font-family: var(--font-family-open-sans);
  font-weight: var(--font-weight-light);
  color: var(--color-dark);
  font-size: var(--text-size-xxl);
  letter-spacing: -0.54px;
  line-height: 1.1;
}

.description {
  font-family: var(--font-family-open-sans);
  font-weight: var(--font-weight-regular);
  color: #000;
  font-size: var(--text-size-lg);
  line-height: 1.1;
}

.call-to-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-m);
}

.call-to-action p {
  font-family: var(--font-family-open-sans);
  font-weight: var(--font-weight-semi-bold);
  color: #000;
  font-size: var(--text-size-xl);
  line-height: 1.1;
}

.call-to-action .download-text {
  font-size: var(--text-size-lg);
  font-weight: var(--font-weight-regular);
  line-height: 1.1;
}

.text-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xxs);
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-m);
}

.button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  padding: var(--space-xs) var(--space-s);
  background-color: var(--color-electric-blue);
  color: var(--color-white);
  border-radius: 1px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

a.button:hover {
  background: linear-gradient(107deg, #000 26.06%, #3448DF 73.94%);
}

.button-text {
  font-family: var(--font-family-open-sans);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-size-sm);
  letter-spacing: 1.4px;
  line-height: 1;
  white-space: nowrap;
}

/* Sections */
.section, .section-patronage {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: var(--space-m);
  padding: 0 160px 40px;
}

.section-patronage {
  padding-bottom: 120px;
}

.separator {
  width: 100%;
  height: 1px;
  object-fit: cover;
}

h2 {
  font-family: var(--font-family-open-sans);
  font-weight: var(--font-weight-semi-bold);
  color: #000;
  font-size: var(--text-size-xl);
  line-height: 1.1;
  text-align: center;
}

.resource-link {
  font-family: var(--font-family-open-sans);
  font-weight: var(--font-weight-regular);
  color: var(--color-electric-blue);
  font-size: var(--text-size-lg);
  line-height: 1.1;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.resource-link:hover {
  color: #2a3bc7;
}

/* Cards */

.author-row {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 24px;
  align-self: stretch;
  flex-wrap: wrap;
  width: 100%;
}

.author-card, .logo-card {
  display: flex;
  align-items: flex-start;
  padding: var(--space-s);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: 4px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
}

.author-card {
  gap: var(--space-s);
  flex: 1 1 0;
  min-width: 200px;
}

.author-card.full-width {
  grid-column: 1 / -1;
}

.author-info {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: var(--space-xxs);
}

.author-info h3 {
  font-family: var(--font-family-open-sans);
  font-weight: var(--font-weight-semi-bold);
  color: #000;
  font-size: var(--text-size-lg);
  line-height: 1;
}

.author-info p {
  font-family: var(--font-family-open-sans);
  font-weight: var(--font-weight-regular);
  color: #000;
  font-size: var(--text-size-base);
  line-height: 1;
}

.linkedin-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: var(--space-m);
}

.logo-card {
  flex-direction: column;
  gap: var(--space-s);
  flex: 0 0 auto;
  display: flex;
  height: 104px;
  padding: 16px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.logo-card img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-card p {
  font-family: var(--font-family-open-sans);
  font-weight: var(--font-weight-regular);
  color: #000;
  font-size: var(--text-size-base);
  white-space: nowrap;
  line-height: 1;
}

/* Accessibility and Responsiveness */
.button:focus, .resource-link:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .hero {
    padding: var(--space-xxl) 80px;
  }

  .section, .section-patronage {
    padding: 0 80px 40px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: var(--space-xxl) 48px;
  }

  .headline {
    gap: var(--space-m);
  }

  .section, .section-patronage {
    padding: 0 48px 40px;
  }

  .headline h1 {
    font-size: 44px;
  }

  .subtitle {
    font-size: 32px;
  }
}

@media (max-width: 440px) {
  .hero {
    padding: var(--space-xl) 32px;
    gap: var(--space-l);
  }

  .headline {
    gap: var(--space-s);
  }

  .section, .section-patronage {
    padding: 0 32px 40px;
  }

  .headline h1 {
    font-size: 44px;
  }

  .subtitle {
    font-size: 32px;
  }
}

/*
@media (max-width: 768px) {
  .hero, .section, .section-patronage {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }

  .headline h1 {
    font-size: var(--text-size-xxl);
    line-height: 1.1;
  }

  .subtitle {
    font-size: var(--text-size-xl);
    line-height: 1.1;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: 100%;
    max-width: 200px;
  }

  .author-card.full-width {
    grid-column: auto;
  }
}*/