/*
Theme Name: Greyhound Campaign Theme
Version: 1.1
*/

:root {
  --orange: #e67e22;
  --green: #a4c484;
  --black: #1e1c1a;
  --grey: #e8e8e8;
}

body {
  font-family: "Dunbar Tall", sans-serif;
  color: var(--black);
  background: #ffffff;
  font-size: 20px;
}

h1,
h2,
h3 {
  font-family: "Benton Sans", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 74px;
  line-height: 1.1;
  text-align: center;
}

h2 {
  font-size: 52px;
  line-height: 1.2;
  text-align: center;
}

p {
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  padding: 70px 20px;
}

.march-image {
  max-width: 100%;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.intro .container {
  max-width: 900px;
}

.cta {
  background: #ffffff;
  text-align: center;
}

.button {
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  margin-top: 20px;
  font-size: 18px;
  background: var(--orange);
}

.shutdown {
  background: lightgrey;
}

.donate {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: black;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 6px;
  z-index: 1000;
  text-decoration: none;
  font-size: 18px;
}

.newsletter-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid img {
  width: 100%;
}

@media (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
