/*
 * Temporary ECHO Global Seed Bank notice page.
 * Colors and type are taken from www.echocommunity.org:
 *   text/headings #334049, body text #333, link green #006551,
 *   action green #42A55E (hover #338149), header bar #f8f8f8 / #e7e7e7,
 *   font stack "Helvetica Neue", Helvetica, Arial, sans-serif (Bootstrap 3 base).
 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

/* Matches the site navbar: #f8f8f8 bar, 6px deep-green band, logo 70px tall at the
   left edge with 15px padding (www.echocommunity.org #navUniversal). */
.site-header {
  background-color: #f8f8f8;
  border-bottom: 6px solid #006552;
}

.site-header .container {
  max-width: none;
  margin: 0;
  padding: 15px;
}

.logo-link {
  display: inline-block;
}

.logo {
  display: block;
  width: 243px;
  max-width: 100%;
  height: auto;
}

/* Content */

main.container {
  padding: 3.5rem 1.25rem 3rem;
  flex: 1;
}

h1 {
  color: #334049;
  font-size: 1.9rem;
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

h2 {
  color: #334049;
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 2rem 0 0.75rem;
}

p {
  margin: 0 0 1.1rem;
}

a {
  color: #006551;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: #338149;
}

a:focus-visible {
  outline: 3px solid #42a55e;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Regional Impact Center links */

.region-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.region-list li {
  margin: 0 0 0.5rem;
}

.region-list a {
  display: block;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-left: 4px solid #42a55e;
  border-radius: 4px;
  color: #334049;
  font-weight: 600;
  text-decoration: none;
}

.region-list a:hover {
  border-color: #338149;
  color: #006551;
}

/* Contact line */

.contact {
  margin: 1.75rem 0;
  font-weight: 600;
}

/* Footer — matches the site's #footer: #eee band, 1px #999 top border, 12px text,
   mission paragraph + "ECHO Websites Around The World" columns, centered legal line. */

.site-footer {
  margin-top: 30px;
  background-color: #eee;
  border-top: 1px solid #999;
  padding: 30px 15px;
  color: #333;
  font-size: 0.75rem;
  line-height: 1.45;
}

.footer-columns {
  display: flex;
  gap: 2rem;
}

.footer-about {
  flex: 3;
}

.footer-about p {
  margin: 0;
}

.footer-sites {
  flex: 1;
  min-width: 13rem;
}

.footer-heading {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
}

.footer-sites ul {
  margin: 0;
  padding-left: 1.5em;
}

.footer-sites li {
  margin-bottom: 0.25rem;
}

.site-footer a {
  color: #334049;
}

.site-footer a:hover {
  color: #006551;
}

.footer-sites a,
.footer-legal a {
  text-decoration: none;
}

.footer-sites a:hover,
.footer-legal a:hover {
  text-decoration: underline;
}

.footer-legal {
  text-align: center;
  margin-top: 1.5rem;
}

.footer-legal p {
  margin: 0 0 0.35rem;
}

@media (max-width: 767px) {
  .footer-columns {
    flex-direction: column;
    gap: 1.25rem;
  }
}
