@charset "UTF-8";
/**
 * Display sizes for media queries
 */
/**
 * Fonts
 */
/**
 * Colors
 */
.homepage-grid {
  font-size: 16px;
  font-family: "utopia-std-subhead";
  color: black;
}
.homepage-grid a {
  color: black;
}

/* Main Grid Layout */
.homepage-grid {
  display: grid;
  grid-template-columns: 1fr 90% 1fr;
}

@media (min-width: 1200px) {
  .homepage-grid {
    grid-template-columns: 1fr 900px 300px 1fr;
    grid-gap: 2em;
  }
}
/**
 * Spacing/margin after last section
 */
.homepage-grid {
  margin-bottom: 2em;
}

/* Section -- Defaults */
.section {
  grid-column: 2;
  padding-top: 1em;
  padding-bottom: 1em;
}

@media (min-width: 1200px) {
  .section {
    grid-column: 2/4;
  }
}
/**
 * Section Header
 */
.section__header {
  font-size: 4em;
  font-weight: normal;
  margin-bottom: 0.5em;
}

/* Section -- Full width */
.section--full-width {
  grid-column: span 4;
  background-color: #eee;
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 1200px) {
  .section--full-width {
    grid-column: span 4;
    background-color: #eee;
  }
}
/**
 * Section - Modifier to hide eyebrows
 */
.section--eyebrows-hidden .article-teaser__category {
  display: none;
}

/**
 * Section - modifier to hide headings
 */
.section--headings-hidden .section__header {
  display: none;
}

/**
 * Section - Secondary
 * Teaser list styles
 */
.section--type-secondary .section__header {
  color: #FF6A39;
  margin: 0;
  font-family: "Source Sans Pro", sans-serif, sans-serif;
  font-size: 2.5em;
  font-weight: 600;
}
.section--type-secondary .teaser-list {
  display: block;
}
.section--type-secondary .article-teaser__title {
  font-family: "utopia-std-subhead";
}
.section--type-secondary .article-teaser__summary {
  font-family: "Source Sans Pro", sans-serif;
}

@media (min-width: 1200px) {
  .section--type-secondary {
    padding: 2em 2em 0;
    border-left: 1px solid #ccc;
  }
}
/* Teaser List */
.teaser-list {
  padding: 0;
  display: grid;
  grid-gap: 2em;
}

@media (min-width: 768px) {
  .teaser-list {
    grid-template-columns: repeat(12, 1fr);
  }
}
/* Teaser List Items */
.teaser-list-item {
  list-style: none;
}

.teaser-list-item h1 {
  font-size: 1.5em;
}

.teaser-list-item {
  grid-column: span 4;
}

.section--name-quarterly .teaser-list-item:nth-child(n+6) {
  border-top: 1px solid #ccc;
  padding: 1em 0 0;
}
.section--name-quarterly .teaser-list-item:nth-child(n+6) img {
  display: none;
}

@media (min-width: 768px) {
  .section--name-quarterly .teaser-list-item:nth-child(n+6) {
    grid-column: span 12;
  }
}
/**
 * Baseline
 */
.article-teaser__thumbnail {
  margin-bottom: 1em;
}
.article-teaser__thumbnail img {
  display: block;
}

.article-teaser__category {
  margin-bottom: 0.25em;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3A913F;
}

.article-teaser__title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.25em;
}

/**
 * Featured article
 */
.article-teaser.article-teaser--featured .article-teaser__title {
  font-size: 2em;
}

.article-teaser.article-teaser--featured .article-teaser__summary {
  font-size: 1.3em;
}

/*
 * On mobile, featured thumbnails break out of container and span full width on mobile
 */
@media (max-width: 767px) {
  .article-teaser--featured .article-teaser__thumbnail {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
  }
}
/*
 - Base
 - Main feature teaser
 - Featured section teasers
 - Regular / quarterly teasers
 */
.teaser-list {
  list-style: none;
  padding: 0;
}
.teaser-list .teaser-list__item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.teaser-list .teaser-list__item {
  padding: 1em 0;
}
.teaser-list .teaser-list__item .article-teaser {
  margin: 0;
}

.teaser-list--border-top .teaser-list__item:first-child {
  border-top: 1px solid #ccc;
}

/**
 * Section -- Featured
 */
.section.section--name-featured {
  grid-row: 1;
}

/**
 * Section -- Polytechnic
 */
.section.section--name-polytechnic {
  grid-row: 2;
}

/**
 * Section -- Quarterly
 */
.section.section--name-quarterly {
  grid-row: 3;
}

.section.section--name-big-picture {
  grid-row: 4;
}

/**
 Secondary Section -- News
 */
.section.section--name-news {
  grid-row: 5;
}

/**
 * Section -- Alumni
 */
.section.section--name-alumni {
  grid-row: 6;
}

/**
 * Secondary Section -- Rewind
 */
.section.section--name-rewind {
  grid-row: 7;
}

@media (min-width: 768px) {
  /**
   * Section -- Featured
   */
  .section.section--name-featured {
    grid-row: 1;
    grid-column: 2;
  }
  .section.section--name-featured .teaser-list-item {
    grid-column: span 6;
  }

  /**
   * Section -- Polytechnic
   */
  .section.section--name-polytechnic {
    grid-row: 2;
  }

  /**
   * Section -- Quarterly
   */
  .section.section--name-quarterly {
    grid-row: 3;
    grid-column: 2;
  }
  .section.section--name-quarterly .teaser-list-item:nth-child(1) {
    grid-column: span 8;
  }

  /**
   Secondary Section -- News
   */
  .section.section--name-news {
    grid-row: 4;
  }

  .section.section--name-big-picture {
    grid-row: 5;
  }

  /**
   * Section -- Alumni
   */
  .section.section--name-alumni {
    grid-row: 6;
    grid-column: 2;
  }
  .section.section--name-alumni .teaser-list-item:nth-child(1) {
    grid-column: span 12;
  }
  .section.section--name-alumni .teaser-list-item {
    grid-column: span 4;
  }

  /**
   * Secondary Section -- Rewind
   */
  .section.section--name-rewind {
    grid-row: 7;
  }
}
@media (min-width: 1200px) {
  .section.section--name-featured {
    grid-row: 1;
    grid-column: 2/4;
  }

  .section.section--name-polytechnic {
    grid-row: 2;
  }

  .section.section--name-quarterly {
    grid-row: 3;
    grid-column: 2;
  }

  .section.section--name-news {
    grid-row: 3;
    grid-column: 3;
  }

  .section.section--name-big-picture {
    grid-row: 4;
  }

  .section.section--name-alumni {
    grid-row: 5;
    grid-column: 2;
  }

  .section.section--name-rewind {
    grid-row: 5;
    grid-column: 3;
  }
}
/**
 * Polytechnic
 * Section type -- two column with image and content
 */
.section.two_column_content_with_image {
  padding: 1em 0;
}
.section.two_column_content_with_image .section__content {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .section.two_column_content_with_image .wrapper--col-2 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-gap: 2em;
  }
}
@media (min-width: 1200px) {
  .section.two_column_content_with_image {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: 1fr 900px 300px 1fr;
  }
  .section.two_column_content_with_image .section__content {
    grid-column: 2/4;
    width: 100%;
  }
  .section.two_column_content_with_image .wrapper--col-2 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-gap: 2em;
  }
}
.section.two_column_content_with_image .image {
  padding: 0 0 2em;
}
.section.two_column_content_with_image .image img {
  width: 100%;
}
.section.two_column_content_with_image ul {
  font-size: 1.5em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.section.two_column_content_with_image li {
  padding: 0.5em 0;
  border-bottom: 1px solid #ccc;
}
.section.two_column_content_with_image li:last-of-type {
  border: none;
}
.section.two_column_content_with_image li::before {
  font-family: FontAwesome;
  content: "";
  margin-right: 0.5em;
}

/**
 * Big Picture / Teaser w/ overlay
 */
.article-teaser.article-teaser--type-overlay a {
  color: white;
}
.article-teaser.article-teaser--type-overlay img {
  width: 100%;
}
.article-teaser.article-teaser--type-overlay .article-teaser__overlay__content {
  background-color: black;
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  padding: 1em 5%;
}
.article-teaser.article-teaser--type-overlay .article-teaser__category {
  color: white;
}

@media (min-width: 1024px) {
  .article-teaser.article-teaser--type-overlay {
    position: relative;
  }
  .article-teaser.article-teaser--type-overlay .article-teaser__image {
    position: relative;
    z-index: 1;
  }
  .article-teaser.article-teaser--type-overlay .article-teaser__overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .article-teaser.article-teaser--type-overlay .article-teaser__overlay__content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: 2;
  }
}
@media (min-width: 1200px) {
  .article-teaser.article-teaser--type-overlay .article-teaser__overlay {
    grid-template-columns: 1fr 900px 300px 1fr;
  }
  .article-teaser.article-teaser--type-overlay .article-teaser__overlay .article-teaser__overlay__content {
    grid-column: 3/5;
  }
}
@media (min-width: 1200px) {
  .article-teaser__overlay {
    grid-template-columns: 1fr 900px 300px 1fr;
    grid-gap: 2em;
  }
}
/**
 * Variations/customizations for the homepage for Spring/Summer 2020 issue
 */
/**
 * Display sizes for media queries
 */
/**
 * Fonts
 */
/**
 * Colors
 */
@media (min-width: 768px) {
  .section.section--name-featured .teaser-list-item:nth-child(1) {
    grid-column: span 12;
  }
  .section.section--name-featured .teaser-list-item:nth-child(1) .article-teaser__title {
    font-size: 2em;
  }
  .section.section--name-featured .teaser-list-item {
    grid-column: span 6;
  }
}
/**
 * Main feature styling/layout
 */
@media (min-width: 1024px) {
  .section.section--name-featured .teaser-list li:first-child .article-teaser {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
  .section.section--name-featured .teaser-list li:first-child .article-teaser .article-teaser__thumbnail {
    grid-column: span 2;
  }
  .section.section--name-featured .teaser-list li:first-child .article-teaser .article-teaser__title {
    text-align: center;
    align-self: center;
  }
  .section.section--name-featured .teaser-list li:first-child .article-teaser .article-teaser__summary {
    align-self: center;
  }

  .section.section--name-featured .teaser-list li:first-child .article-teaser__title {
    font-size: 3.75em;
  }
  .section.section--name-featured .teaser-list li:first-child .article-teaser__summary {
    font-size: 1.65em;
  }

  .section--name-featured .article-teaser__title {
    font-size: 2.25em;
  }
}

/*# sourceMappingURL=homepage-2020.css.map */
