:root {
  --content-width: 1200px;
  --mainbody: 960px;
  --right-column: 240px;
}

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
  }

  .page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
  }

  .three-column-layout {
    display: grid;
    grid-template-columns: 4fr 1fr;
  }

  .header-cell,
  .content-cell {
    padding: 10px;
  }

  .header-cell img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .right-column {
    background: #000000;
	  text-align: right;
  }
  
    .right-column a {
    color: #ffffff;
  }

  .main-column {
    background: #ffffff;
  }
  
    .table-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
  
   .table,
  .content-cell {
    padding: 10px;
  }

  .table img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .left {
    background: #ffffff;
  }

  .right {
    background: #ffffff;
  }

  .main-column article {
    padding: 10px;
    line-height: 1.6;
  }
  
  .article-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.4;
}
  .article-text {
  column-count: 2;
  column-gap: 30px;
  margin-bottom: 30px;
}
  
  .magnav {
  font-style: verdana;
  font-size: 12px;
  color: white;
  font-weight: bold;
  }

  .magnav a {
  font-style: verdana;
  font-size: 18px;
  color: white;
  font-weight: bold;
  }
  
  div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 200px;
}

div.gallery-item:hover {
  border: 1px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}

.pull-quote {
  background-color: LavenderBlush;
  color: black;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  padding: 10px 0;
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.2;
  font-style: normal;
  column-span: all;
  font-weight: 700;
  font-family: verdana, 'Roboto Condensed', 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -0.5px;
  text-align: justify;
}

.pull-quote p {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 15px;
  margin-left: 15px;
  font-size: 16px;
  line-height: 1.2;
  font-family: verdana, 'Roboto Condensed', 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
}

.quote-attribution {
  font-size: 16px;
  text-align: right;
  font-style: normal;
  margin-top: 15px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sidebar-title {
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  padding-bottom: 10px;
}

.timeline {
  margin-bottom: 30px;
  flex-grow: 1;
}

.timeline-item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
}

  .timeline-item p {
  font-style: verdana;
  font-size: 18px;
  color: white;
  font-weight: bold;
  }
  

.timeline-year {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 18px;
  margin-top: 0;
}


.timeline-dot {
  position: absolute;
  left: -5px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: #FF3366;
  border-radius: 50%;
}

.dot-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, white 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.2;
}

  /* Optional: stack columns on smaller screens */
  @media (max-width: 700px) {
    .three-column-layout {
      grid-template-columns: 1fr;
    }

@media (max-width: 600px) {
  figure {
    float: none !important;
    margin: 0 auto 15px auto !important;
    display: table; /* Keeps the caption bound tightly to the image width */
  }
  
  figure img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }