  .homepage-breadcrumb .breadcrumb-row {
  margin-bottom: 0;
}

.site-header-noimage {
  padding: 1rem 0;
}

.site-header-noimage .site-title {
  text-transform: uppercase;
  font-weight: 600 !important;
  font-size: 3rem;
  line-height: 1.1;
  padding-bottom: .5rem;
  margin-top: 0;
  margin-bottom: .5rem;
  border-bottom: 1px solid #f6b000;
  font-family: "Arvo", sans-serif;
}

.site-header-noimage .site-title span {
  color: #f6b000;
}

.site-header-noimage .page-paragraph {
  line-height: 1.1;
  margin-bottom: 0;
}

.content a.block-button,
.content a.round-blue-button,
.content a.icon-button-people,
.content a.icon-button,
.content button.block-button {
  padding: .5rem 1rem;
  background: #013c65;
  color: #ffffff;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500 !important;
  border-radius: 0;
  border: none;
  margin-right: .75rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.content a.block-button:hover,
.content a.round-blue-button:hover,
.content a.icon-button-people:hover,
.content a.icon-button:hover,
.content button.block-button:hover {
  background: #f6b000;
  color: #013c65;
}

.content a.block-button:hover:before,
.content a.round-blue-button:hover:before,
.content a.icon-button-people:hover:before,
.content a.icon-button:hover:before,
.content button.block-button:hover:before {
  filter: unset;
  -webkit-filter: unset;
}

.content a.icon-button-people:before,
.content a.icon-button:before {
  display: inline-block;
  background: url("https://unco.edu/marketing-communications/assets/arrow-up-right-from-square.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  content: '';
  background-size: contain;
  filter: grayscale(1) brightness(5);
  margin-right: 0.5rem;
}

.content a.icon-button-people:before {
  background: url("https://unco.edu/marketing-communications/assets/people-group.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
}

.articles-hero__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  min-height: 550px;
  overflow: hidden;
  margin-bottom: 3rem;
}

@media (max-width: 769px) {
  .articles-hero__inner {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

@media (max-width: 769px) {
  .articles-hero__inner {
    gap: 0 !important;
  }
}

.articles-hero__inner__primary {
  grid-column: auto / span 1;
  grid-row: auto / span 2;
}

.articles-hero__inner__primary__single {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
}

.articles-hero__inner__primary__single__meta {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 2rem;
  width: 1050px;
  margin: 0 auto;
  /* Category list */
}

.articles-hero__inner__primary__single__meta__title {
  color: #ffffff;
  width: 100%;
  height: max-content;
  font-size: 2rem;
  font-family: "Arvo", sans-serif;
  line-height: 1.2;
  user-select: all;
  text-shadow: 2px 3px 15px black;
}

.articles-hero__inner__primary__single__meta__excerpt {
  display: block;
  color: #ffffff;
  line-height: 1.5;
  user-select: all;
  pointer-events: none;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.articles-hero__inner__primary__single__meta .inline-list {
  margin: auto 0 .25rem 0;
}

.articles-hero__inner__primary__single__meta .inline-list > li {
  margin-left: 1rem;
}

.articles-hero__inner__primary__single__meta .inline-list > li:first-child {
  margin-left: 0;
}

.articles-hero__inner__primary__single__meta .inline-list > li .label.secondary {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  font-style: italic;
}

.articles-hero__inner__primary__single img {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.articles-hero__inner__primary__single::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 34, 36, 0.2), rgba(30, 34, 36, 0.6) 47.7%, rgba(30, 34, 36, 0.8));
  z-index: 1;
}

.articles-hero__inner__primary:hover .articles-hero__inner__primary__single__meta__title {
  text-decoration: underline;
}

.articles-hero__inner__secondary {
  grid-column: auto / span 1;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #ffffff;
}

@media (max-width: 1024px) {
  .articles-hero__inner__secondary {
    min-height: 350px;
  }
}

.articles-hero__inner__secondary__single {
  display: flex;
  flex: 1;
  width: 100%;
  position: relative;
}

.articles-hero__inner__secondary__single__meta {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 70%;
  /* Category list */
}

.articles-hero__inner__secondary__single__meta__title {
  width: 100%;
  height: max-content;
  font-size: 1.25rem;
  font-family: "Arvo", sans-serif;
  line-height: 1.2;
  user-select: all;
  text-shadow: 2px 3px 15px black;
  color: #ffffff;
}

.articles-hero__inner__secondary__single__meta__excerpt {
  color: #ffffff;
  line-height: 1.5;
  user-select: all;
  pointer-events: none;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.articles-hero__inner__secondary__single__meta .inline-list {
  margin: auto 0 .25rem 0;
}

.articles-hero__inner__secondary__single__meta .inline-list > li:first-child {
  margin-left: 0;
}

.articles-hero__inner__secondary__single__meta .inline-list > li .label.secondary {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  font-style: italic;
}

.articles-hero__inner__secondary__single img {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.articles-hero__inner__secondary__single::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.articles-hero__inner__secondary__single:last-child {
  border-top: 1px solid #ffffff;
}

.articles-hero__inner__secondary__single:hover .articles-hero__inner__secondary__single__meta__title {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .articles-hero__inner .articles-hero__inner__primary__single__meta {
    width: auto;
    max-width: 95%;
    margin: unset;
  }
  .articles-hero__inner .articles-hero__inner__primary,
  .articles-hero__inner .articles-hero__inner__secondary {
    grid-column: 1 / -1;
  }
  .articles-hero__inner .articles-hero__inner__primary {
    min-height: 350px;
  }
  .articles-hero__inner .articles-hero__inner__secondary {
    flex-direction: row;
    border-left: none;
  }
  .articles-hero__inner .articles-hero__inner__secondary__single {
    border-top: 1px solid #ffffff;
  }
  .articles-hero__inner .articles-hero__inner__secondary__single__meta__title {
    line-height: 1.5;
    font-size: 1rem;
    padding-top: 2rem;
  }
  .articles-hero__inner .articles-hero__inner__secondary__single__meta__excerpt {
    display: none;
  }
}

@media (max-width: 1200px) and (min-width: 640px) {
  .articles-hero__inner .articles-hero__inner__secondary__single:last-child {
    border-left: 1px solid #ffffff;
  }
}

@media (max-width: 640px) {
  .articles-hero__inner .articles-hero__inner__primary__single__meta {
    max-width: 95%;
  }
  .articles-hero__inner .articles-hero__inner__primary__single__meta__title {
    font-size: 1.5rem;
    margin-bottom: .25rem;
  }
  .articles-hero__inner .articles-hero__inner__primary__single__meta__excerpt {
    -webkit-line-clamp: 2;
  }
  .articles-hero__inner .articles-hero__inner__primary__single__meta__button {
    font-size: .9rem;
    padding: .5rem .75rem;
  }
  .articles-hero__inner .articles-hero__inner__secondary {
    flex-direction: column;
  }
  .articles-hero__inner .articles-hero__inner__secondary__single {
    border-left: none;
  }
  .articles-hero__inner .articles-hero__inner__secondary__single__meta {
    max-width: 95%;
  }
}

.latest {
  margin-bottom: 3rem;
}

.latest .stories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-left: 0;
}

@media (max-width: 769px) {
  .latest .stories {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

@media (max-width: 1024px) {
  .latest .stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 769px) {
  .latest .stories {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .latest .stories {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.latest .stories:before {
  display: none;
}

.latest .stories .line-heading {
  color: #013c65;
  margin: 0 auto;
  max-width: max-content;
  padding: 0 1rem;
  display: block;
  position: relative;
  font-weight: 600 !important;
  text-align: center;
  z-index: 1;
  text-transform: uppercase;
  grid-column: -1 / 1;
  margin-bottom: .75rem;
}

.latest .stories .line-heading:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  height: 3px;
  width: 970px;
  background: #f6b000;
  bottom: 15px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
}

@media (max-width: 1024px) {
  .latest .stories .line-heading:before {
    width: 750px;
  }
}

@media (max-width: 768px) {
  .latest .stories .line-heading:before {
    width: 650px;
  }
}

@media (max-width: 640px) {
  .latest .stories .line-heading:before {
    width: 600px;
  }
}

@media (max-width: 600px) {
  .latest .stories .line-heading:before {
    width: 350px;
  }
}

.latest .stories .line-heading:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  bottom: 0;
}

.latest .stories .latest-story {
  grid-column: auto / span 1;
  margin-right: 0.75rem;
  padding-right: 0.75rem;
  border-right: 1px solid #f6b000;
  list-style-type: none;
  /* Category list */
}

@media (max-width: 1024px) {
  .latest .stories .latest-story {
    border-right: none;
  }
}

.latest .stories .latest-story:last-of-type {
  margin-right: 0;
  border-right: none;
}

.latest .stories .latest-story:after {
  display: none;
}

.latest .stories .latest-story .inline-list {
  margin: auto 0 .25rem 0;
}

.latest .stories .latest-story .inline-list > li:first-child {
  margin-left: 0;
}

.latest .stories .latest-story .inline-list > li:not(:first-child) {
  display: none;
}

.latest .stories .latest-story .inline-list > li .label.secondary {
  background-color: transparent;
  color: #013c65;
  border: 1px solid #013c65;
  font-style: italic;
}

.latest .stories .latest-story .small-story-photo {
  margin-bottom: .75rem;
}

.latest .stories .latest-story .small-story-photo a {
  display: block;
}

.latest .stories .latest-story .title {
  line-height: 1.1;
  color: #013c65;
  display: block;
  margin-bottom: .75rem;
  font-family: "Arvo", sans-serif;
  font-size: 1.25rem;
  font-weight: 600 !important;
}

.latest .stories .latest-story .title:hover {
  text-decoration: underline;
}

.latest .block-button {
  width: 100%;
  margin: .75rem 0 0 0 !important;
}

.news-submission {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding: 1rem;
  border: 1px solid #013c65;
  border-radius: 12px;
}

.news-submission h5 {
  color: #013c65;
  font-weight: 600 !important;
  max-width: 350px;
}

@media (max-width: 640px) {
  .news-submission h5 {
    margin-bottom: 1rem;
  }
}

.news-submission:before, .news-submission:after {
  display: none;
}

@media (max-width: 1024px) {
  .news-submission {
    justify-content: center;
    flex-wrap: wrap;
  }
  .news-submission h5 {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
  }
  .news-submission a.block-button, .news-submission a.icon-button {
    margin: 0;
  }
}

@media (max-width: 640px) {
  .news-submission a.block-button, .news-submission a.icon-button {
    margin: 0;
    margin-bottom: .5rem;
  }
  .news-submission a.block-button:last-child, .news-submission a.icon-button:last-child {
    margin-bottom: 0;
  }
}

.bear-spotlight {
  margin-bottom: 3rem;
}

.bear-spotlight__inner {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  background-position: center center;
  background-size: cover;
  border-radius: 12px;
}

.bear-spotlight__inner:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  content: "";
  border-radius: 12px;
}

.bear-spotlight__inner__special-title {
  position: absolute;
  text-align: center;
  font-weight: 600 !important;
  font-style: italic;
  margin: 0;
  color: #f6b000;
  text-shadow: 0 2.5px 0 black;
  font-size: 1.5rem;
  transform: rotateZ(347deg);
  top: 0.5rem;
  left: 0.5rem;
}

.bear-spotlight__inner__meta {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bear-spotlight__inner__meta__title {
  margin: 0 0 .5rem 0;
  color: white;
  font-family: "Arvo", sans-serif;
  font-size: 2.75rem;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-style: italic;
  text-shadow: 2px 2px 0 BLACK;
  text-decoration: underline;
  text-decoration-color: #f6b000;
  max-width: 80%;
  text-align: center;
  line-height: 1.3;
  transition: color .2s ease-in-out;
}

.bear-spotlight__inner__meta__excerpt {
  margin: 0;
  color: white;
  font-family: "Arvo", sans-serif;
  max-width: 500px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3;
}

.bear-spotlight__inner:hover .bear-spotlight__inner__meta__title {
  color: #f6b000;
}

.news-releases {
  background-color: #eeeeee;
  border: 30px solid #eee;
  border-radius: 6px;
  margin-bottom: 3rem;
}

.news-releases .section-title {
  border-bottom: 1px solid #666;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  color: #013c65;
  font-weight: 600 !important;
}

.news-releases .releases {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-left: 0;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #666;
  padding-bottom: 0.75rem;
}

.news-releases .releases li {
  grid-column: auto / span 1;
  margin-right: 0.75rem;
  padding-right: 0.75rem;
  border-right: 1px solid #666;
}

@media (max-width: 767px) {
  .news-releases .releases li {
    grid-column: -1 / 1;
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    margin-bottom: .5rem;
  }
  .news-releases .releases li:not(:last-child) {
    border-bottom: 1px solid #666666;
  }
}

.news-releases .releases li:last-child {
  margin-right: 0;
  border-right: none;
}

.news-releases .releases li .title {
  font-family: "Arvo", sans-serif;
  color: #013c65;
  font-size: 1.25rem;
  margin-bottom: .25rem;
}

.news-releases .releases li .title:hover {
  text-decoration: underline;
}

.news-releases .releases li .date {
  color: #666;
  font-style: italic;
}

.news-releases .block-button {
  margin-right: 0;
  margin-left: auto;
  display: block;
  width: max-content;
}

.category-stories .category {
  margin-bottom: 2rem;
}

.category-stories .category .category-title {
  color: #013c65;
  font-family: "Open Sans", sans-serif;
  font-weight: 600 !important;
  font-style: italic;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.category-stories .category .category-title span {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding-right: .75rem;
}

.category-stories .category .category-title:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #f6b000;
  position: relative;
  top: -.75rem;
  z-index: 0;
}

.category-stories .category .stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem .75rem;
  margin-left: 0;
  list-style-type: none;
}

@media (max-width: 767px) {
  .category-stories .category .stories {
    display: block;
  }
}

@media (max-width: 767px) {
  .category-stories .category .stories li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}

.category-stories .category .stories li .title {
  line-height: 1.1;
  color: #013c65;
  display: block;
  font-family: "Arvo", sans-serif;
  font-size: 1.25rem;
}

.category-stories .category .stories li .title:hover {
  text-decoration: underline;
}

.category-stories .category .stories li:first-child {
  grid-row: auto / span 3;
}

.category-stories .category .stories li:first-child .small-story-photo {
  margin-bottom: .75rem;
}

@media (max-width: 767px) {
  .category-stories .category .stories li:first-child {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
  }
}

.category-stories .category .stories li:not(:first-child) {
  grid-column: 2 / span 1;
  grid-row: auto / span 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-stories .category .stories li:not(:first-child) .small-story-photo {
  max-width: 40%;
}

.category-stories .category .stories li:not(:first-child) .title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.category-stories .category .stories li:not(:first-child):not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .category-stories .category .stories li:not(:first-child):not(:last-child) {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .category-stories .category .stories li a {
    display: block;
    width: 100%;
  }
  .category-stories .category .stories li a img {
    width: 100%;
  }
}

.category-stories .category .block-button {
  width: 100%;
  margin-right: 0;
}

.category-select {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  align-items: center;
  font-family: "Arvo", sans-serif;
  margin-bottom: 1rem;
}

.category-select span {
  font-size: 1.25rem;
}

.category-select select {
  margin-bottom: 0;
  margin-left: .75rem;
  margin-right: .75rem;
  text-align: center;
  color: #013c65;
  background: transparent;
  border: none;
  border-bottom: 1px solid;
  font-weight: 600;
  font-size: 1.25rem;
  padding-top: 0;
  padding-bottom: 0.25rem;
  background-image: url("/news/assets/caret-down.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.all-categories {
  padding-top: 3rem;
}

.all-categories .category-stories .categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 769px) {
  .all-categories .category-stories .categories {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.all-categories .category-stories .categories .category {
  margin-bottom: 2rem;
}

.all-categories .category-stories .categories .category .category-title {
  color: #013c65;
  font-family: "Open Sans", sans-serif;
  font-weight: 600 !important;
  font-style: italic;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.all-categories .category-stories .categories .category .stories {
  display: block;
}

.all-categories .category-stories .categories .category .stories li:first-child {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
}

.all-categories .category-stories .categories .category .stories li:first-child .small-story-photo {
  margin-bottom: .75rem;
}

.all-categories .category-stories .categories .category .stories li .small-story-photo {
  display: block;
  min-width: 175px;
}

.all-categories .category-stories .categories .category .stories li .small-story-photo a {
  height: 0;
  overflow: hidden;
  padding-top: 52.65%;
  background: white;
  position: relative;
  display: block;
}

.all-categories .category-stories .categories .category .stories li .small-story-photo a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.all-categories .category-stories .categories .category .stories .title {
  margin-bottom: 0;
}

.single-category-index {
  padding-top: 3rem;
}

.single-category-index .top-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 769px) {
  .single-category-index .top-story {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.single-category-index .top-story .copy h2 {
  margin-top: 0;
  line-height: 1.1;
  color: #013c65;
  display: block;
}

.single-category-index .top-story .copy h2:hover {
  text-decoration: underline;
}

.single-category-index .top-story .big-story-photo {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .single-category-index .top-story .big-story-photo {
    order: -1;
  }
}

.single-category-index .bottom {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 769px) {
  .single-category-index .bottom {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.single-category-index .bottom .stories {
  grid-column: auto / span 9;
}

.single-category-index .bottom .stories .small-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cccccc;
}

@media (max-width: 769px) {
  .single-category-index .bottom .stories .small-story {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.single-category-index .bottom .stories .small-story .copy h3 {
  line-height: 1.1;
  color: #013c65;
  display: block;
  font-family: "Arvo", sans-serif;
  font-size: 1.25rem;
  margin-top: 0;
}

.single-category-index .bottom .stories .small-story .copy h3:hover {
  text-decoration: underline;
}

.single-category-index .bottom .stories .small-story .copy p {
  margin-bottom: 0;
}

.single-category-index .bottom .stories .small-story:not(:last-child) {
  border-bottom: 1px solid #cccccc;
}

@media (max-width: 768px) {
  .single-category-index .bottom .stories .small-story .small-story-photo {
    order: -1;
  }
  .single-category-index .bottom .stories .small-story .small-story-photo a {
    display: block;
    width: 100%;
  }
  .single-category-index .bottom .stories .small-story .small-story-photo a img {
    width: 100%;
  }
}

.single-category-index .bottom .sidebar {
  grid-column: auto / span 3;
}

.single-category-index .bottom .sidebar .gsc-search-box {
  margin-bottom: 1rem;
}

.single-category-index .bottom .sidebar .gsc-search-box > table > tbody > tr {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

.single-category-index .bottom .sidebar .gsc-search-box > table > tbody > tr td.gsc-input {
  padding: 0;
  display: block;
  border: none;
  width: 85%;
}

.single-category-index .bottom .sidebar .gsc-search-box > table > tbody > tr td.gsc-input table.gsc-input {
  border: none;
  margin: 0;
}

.single-category-index .bottom .sidebar .gsc-search-box > table > tbody > tr td.gsc-input table.gsc-input > tbody > tr td.gsib_a {
  padding: 0;
}

.single-category-index .bottom .sidebar .gsc-search-box > table > tbody > tr td.gsc-input table.gsc-input > tbody > tr td.gsib_a input.gsc-input {
  margin: 0px;
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 12px 0px 0px 12px;
  background: none !important;
}

.single-category-index .bottom .sidebar .gsc-search-box > table > tbody > tr td.gsc-input table.gsc-input > tbody > tr td.gsib_b {
  display: none;
}

.single-category-index .bottom .sidebar .gsc-search-box > table > tbody > tr td.gsc-search-button {
  padding: 0;
  display: block;
  width: 15%;
  margin: 0;
}

.single-category-index .bottom .sidebar .gsc-search-box > table > tbody > tr td.gsc-search-button button.gsc-search-button {
  margin: 0;
  border: none;
  background-color: #013c65;
  height: 100%;
  display: block;
  padding: 0;
  width: 100%;
}

.single-category-index .bottom .sidebar .sidebar-title {
  font-family: "Open Sans", sans-serif;
  color: #013c65;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-style: italic;
}

.single-category-index .bottom .sidebar .block-button {
  width: 100%;
  margin-right: 0;
  font-size: .75rem;
  margin-bottom: .75rem;
}

.social {
  padding: .75rem;
  border: 1px solid #013c65;
  border-radius: 12px;
  margin-top: .5rem;
}

.social .sidebar-title {
  margin-bottom: .25rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid #f6b000;
}

.social .social-link {
  display: block;
  width: 100%;
  color: #013c65;
}

.social .social-link img {
  margin-right: .5rem;
}

.social .social-link:hover {
  text-decoration: underline;
}

.social .social-link:not(:last-child) {
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #cccccc;
}

#pagin {
  list-style-type: none;
  margin: 1rem auto;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (max-width: 769px) {
  #pagin {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

#pagin li a,
#pagin li.next,
#pagin li.prev {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  border-radius: 6px;
  background-color: #e6e6e6;
  color: #013c65;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

#pagin li a.current {
  background-color: #013c65;
  color: #ffffff;
}

.article-page {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 769px) {
  .article-page {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.article-page__top {
  grid-column: 2 / span 10;
  margin-bottom: 1rem;
}

.article-page__top img {
  width: 100%;
}

.article-page__top .caption {
  font-size: .75rem;
  font-style: italic;
  color: #666;
}

.article-page__top__meta {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
}

@media (max-width: 769px) {
  .article-page__top__meta {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.article-page__top__meta__copy {
  grid-column: -1 / 1;
}

.article-page__top__meta__copy ul {
  margin: 0;
}

.article-page__top__meta__copy ul li {
  margin: 0;
  margin-right: .5rem;
}

.article-page__top__meta__copy ul li a span.label {
  background-color: transparent;
  color: #013c65;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-style: italic;
  padding: 0;
  word-break: break-word;
  text-align: left;
  white-space: break-spaces;
  line-height: 1.2;
}

.article-page__top__meta__copy h1 {
  margin-top: 0;
  color: #013c65;
  font-weight: 600 !important;
}

.article-page__top__meta__copy .excerpt {
  font-weight: 600 !important;
  margin-bottom: .5rem;
}

.article-page__top__meta__copy .byline {
  margin-bottom: 0;
  font-size: .75rem;
  color: #666666;
  font-style: italic;
}

.article-page__bottom {
  grid-column: auto / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 769px) {
  .article-page__bottom {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.article-page__bottom__siderail {
  grid-column: auto / span 2;
}

.article-page__bottom__siderail__share {
  display: flex;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  position: -webkit-sticky;
  position: sticky;
  top: 16rem;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .article-page__bottom__siderail__share {
    -webkit-flex-flow: unset;
    -ms-flex-flow: unset;
    flex-flow: unset;
    gap: .75rem;
  }
}

.article-page__bottom__siderail__share a, .article-page__bottom__siderail__share button {
  background-color: #013c65;
  color: #ffffff;
  font-size: 1rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .article-page__bottom__siderail__share a, .article-page__bottom__siderail__share button {
    margin-bottom: 0 !important;
  }
}

.article-page__bottom__siderail__share a:hover, .article-page__bottom__siderail__share button:hover {
  background-color: #002742;
}

.article-page__bottom__siderail__share a:not(:last-child), .article-page__bottom__siderail__share button:not(:last-child) {
  margin-bottom: .5rem;
}

.article-page__bottom__siderail__share a svg, .article-page__bottom__siderail__share button svg {
  fill: #ffffff;
}

.article-page__bottom__body {
  grid-column: auto / span 8;
}

.article-page__more {
  grid-column: auto / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 769px) {
  .article-page__more {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.article-page__more__stories-wrapper {
  grid-column: auto / span 8;
  padding: .75rem;
  border: 1px solid #013c65;
  border-radius: 12px;
}

.article-page__more__stories-wrapper .stories-title {
  font-style: italic;
  font-family: "Open Sans", sans-serif;
  color: #013c65;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600 !important;
  position: relative;
  top: -2rem;
  max-width: max-content;
  background: white;
  padding: 0.5rem;
  margin-bottom: -1.5rem;
}

.article-page__more__stories-wrapper .stories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  list-style-type: none;
}

@media (max-width: 769px) {
  .article-page__more__stories-wrapper .stories {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.article-page__more__stories-wrapper .stories li {
  margin: 0;
  grid-column: auto / span 1;
}

.article-page__more__stories-wrapper .stories li:first-child {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.article-page__more__stories-wrapper .stories li .small-story-photo {
  display: block;
  margin-bottom: .75rem;
}

.article-page__more__stories-wrapper .stories li .small-story-photo a {
  height: 0;
  overflow: hidden;
  padding-top: 52.65%;
  background: white;
  position: relative;
  display: block;
}

.article-page__more__stories-wrapper .stories li .small-story-photo a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-page__more__stories-wrapper .stories li a .title {
  color: #013c65;
  font-size: 1rem;
  line-height: 1.2;
}

.article-page__more__stories-wrapper .stories li a .title:hover {
  text-decoration: underline;
}

.article-page__more__social {
  grid-column: auto / span 4;
}

.article-page__more__social__inner {
  display: flex;
  flex-wrap: wrap;
  padding: .75rem;
  border: 1px solid #013c65;
  border-radius: 12px;
}

.article-page__more__social__inner .sidebar-title {
  margin-bottom: 1rem;
  padding-bottom: .25rem;
  width: 100%;
  font-style: italic;
  font-family: "Open Sans", sans-serif;
  color: #013c65;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600 !important;
  border-bottom: 1px solid #f6b000;
}

.article-page__more__social__inner .social-link {
  display: block;
  width: 50%;
  color: #013c65;
}

.article-page__more__social__inner .social-link img {
  margin-right: .5rem;
}

.article-page__more__social__inner .social-link:hover {
  text-decoration: underline;
}

.article-page__more__social__inner .social-link:not(:last-child) {
  margin-bottom: .5rem;
  padding-bottom: .5rem;
}

.around-unc {
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.around-unc img {
  margin: .5rem 0;
}

.around-unc p {
  margin-bottom: 0;
}

.around-unc a.block-button {
  margin-right: 0;
  background: #ffffff;
  color: #013c65;
}

.around-unc a.block-button:hover {
  background: #f6b000;
  color: #013c65;
}

.around-unc a.block-button:first-child {
  margin-bottom: 1rem;
}

.news-home-social__inner {
  display: flex;
  flex-wrap: wrap;
  padding: .75rem;
  border: 1px solid #013c65;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.news-home-social__inner h5 {
  margin-bottom: 1rem;
  padding-bottom: .25rem;
  width: 100%;
  font-style: italic;
  font-family: "Open Sans", sans-serif;
  color: #013c65;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600 !important;
  border-bottom: 1px solid #f6b000;
}

.news-home-social__inner__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

@media (max-width: 769px) {
  .news-home-social__inner__links {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

.news-home-social__inner__links .social-link {
  grid-column: auto / span 1;
  display: block;
  color: #013c65;
}

.news-home-social__inner__links .social-link img {
  margin-right: .5rem;
}

.news-home-social__inner__links .social-link:hover {
  text-decoration: underline;
}

.news-home-social__inner__links .social-link:not(:last-child) {
  margin-bottom: .5rem;
  padding-bottom: .5rem;
}

#cms-inline-editor-id .english.body, #cms-inline-editor-id .spanish.body {
  display: block !important;
}

.pr-team {
  padding: 1rem;
  border: 3px solid #013c65;
  border-radius: 12px;
}

.pr-team__single {
  width: 100%;
  display: flex;
}

.pr-team__single:not(:last-child) {
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #ebebeb;
}

.pr-team__single__text {
  width: 65%;
  margin-right: 1rem;
}

.pr-team__single__text p {
  margin: 0;
}

.pr-team__single__text p:first-child {
  text-transform: uppercase;
  color: #013c65;
  padding-bottom: .25rem;
  margin-bottom: .25rem;
  border-bottom: 3px solid #f6b000;
  font-weight: 600 !important;
  font-size: 1.1rem;
}

.pr-team__single__text p:nth-child(2) {
  font-weight: 600 !important;
  margin-bottom: .25rem;
}

.pr-team__single__image__wrapper {
  display: block;
  flex: 1;
}

.pr-team__single__image {
  padding-bottom: 100%;
  width: 100%;
  height: 0;
  overflow: hidden;
  position: relative;
}

.pr-team__single__image img,
.pr-team__single__image iframe,
.pr-team__single__image video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  border: none;
}

.pr-team__single__image img {
  width: auto;
  height: auto;
  border-radius: 80px;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
}

.for-media-page .news-releases {
  margin: 3rem 0;
}

.image-download {
  border: 1px solid #013c65;
}

.image-download__image-container {
  width: 100%;
  height: 0;
  overflow: hidden;
  position: relative;
  padding-bottom: 52.65%;
  background-color: #ebebeb;
}

.image-download__image-container__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-position: center;
  background-repeat: no-repeat;
  background-position: center;
}

.image-download__image-container__image.contain {
  padding: 1rem;
}

.image-download__bottom {
  display: flex;
  background-color: #013c65;
}

.image-download__bottom__title {
  padding: 0.5rem;
  color: #ffffff;
  width: 85%;
  margin: 0;
}

.image-download__bottom__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(246, 176, 0, 0);
  width: 15%;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.image-download__bottom__icon svg {
  width: 50%;
  height: 50%;
  fill: #ffffff;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.image-download__bottom__icon:hover {
  background-color: #f6b000;
}

.image-download__bottom__icon:hover svg {
  fill: #013c65;
}

.for-the-media {
  padding: 3rem 0;
}

.for-the-media .block-button:first-child {
  margin-bottom: 1rem;
}

.search .gsc-search-box {
  margin-bottom: 1rem;
}

.search .gsc-search-box > table > tbody > tr {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

.search .gsc-search-box > table > tbody > tr td.gsc-input {
  padding: 0;
  display: block;
  border: none;
  width: 85%;
}

.search .gsc-search-box > table > tbody > tr td.gsc-input table.gsc-input {
  border: none;
  margin: 0;
}

.search .gsc-search-box > table > tbody > tr td.gsc-input table.gsc-input > tbody > tr td.gsib_a {
  padding: 0;
}

.search .gsc-search-box > table > tbody > tr td.gsc-input table.gsc-input > tbody > tr td.gsib_a input.gsc-input {
  margin: 0px;
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 12px 0px 0px 12px;
  background: none !important;
}

.search .gsc-search-box > table > tbody > tr td.gsc-input table.gsc-input > tbody > tr td.gsib_b {
  display: none;
}

.search .gsc-search-box > table > tbody > tr td.gsc-search-button {
  padding: 0;
  display: block;
  width: 15%;
  margin: 0;
}

.search .gsc-search-box > table > tbody > tr td.gsc-search-button button.gsc-search-button {
  margin: 0;
  border: none;
  background-color: #013c65;
  height: 100%;
  display: block;
  padding: 0;
  width: 100%;
}

.search .search-title {
  font-family: "Open Sans", sans-serif;
  color: #013c65;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-style: italic;
}

.podcasts {
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.podcasts img {
  margin: .5rem 0;
}

.podcasts a.block-button {
  margin-right: 0;
  background: #ffffff;
  color: #013c65;
}

.podcasts a.block-button:hover {
  background: #f6b000;
  color: #013c65;
}

.podcasts a.block-button:first-child {
  margin-bottom: 1rem;
}

.podcasts .row:first-child {
  margin-bottom: 1rem;
}

.podcasts .row:first-child img {
  max-height: 125px;
  width: 100%;
  object-fit: contain;
}

.podcasts .row h6 {
  font-size: 1.25rem !important;
  text-transform: none !important;
}