/* Newsrooms Combined Landing Page Styles */

:root {
  --turquoise: #007A86;
  --red: #C01533;
  --dark: #333333;
  --dark-gray: #63666A;
  --light-gray: #DDDDDD;
  --font-sans-serif: "GothamSSm", Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-serif: "VitesseSSm", "Times New Roman", "Times", serif;
}

.contentCol h1 {
  font-size: 42px;
}

.date {
  font-weight: 400;
  color: #222;
}

.latest-section .container {
  padding-left: 0;
  padding-right: 0;
}

/* Navigation/button bar */

.newsroom-landing-header {
  text-align: center;
  padding: 20px 0;
  display: block;
}

.newsroom-landing-header img {
  max-width: 460px;
}

@media (max-width: 599px) {
  .newsroom-landing-header img {
  	max-width: 360px;
  }
}

@media (min-width: 600px) {
  .newsroom-landing-header {
  	padding: 40px 0;
  }
}

.newsroom-landing-nav {
  width: 100%;
  position: relative;
}

@media (min-width: 600px) {
  .newsroom-landing-nav {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  }
}

.newsroom-landing-nav .btn {
  flex-grow: 1;
  text-align: center;
  color: white;
  font-weight: 700;
  padding: 15px 0;
  text-decoration: none;
  position: relative;
  display: block; /* Ensures the <a> fills the flex space */
}

.newsroom-landing-nav .btn-1 {
  background-color: var(--red);
  
}

.newsroom-landing-nav .btn-1:hover,
.newsroom-landing-nav .btn-1:focus {
  background-color: #ea0f3b;
}

.newsroom-landing-nav .btn-2 {
  background-color: var(--dark-gray);
  text-align: center;
}

.newsroom-landing-nav .btn-2:hover,
.newsroom-landing-nav .btn-2:focus {
  background-color: #767a7e;
}

.newsroom-landing-nav .btn-3 {
  background-color: var(--turquoise);
}

.newsroom-landing-nav .btn-3:hover,
.newsroom-landing-nav .btn-3:focus {
  background-color: #0091a0;
}

@media (min-width: 600px) {
  .newsroom-landing-nav .btn-1 {
  	text-align: left;
  	padding-left: calc((100% - 1140px) / 2);
  }

  .newsroom-landing-nav .btn-3 {
  	text-align: right;
  	padding-right: calc((100% - 1140px) / 2);
  }
}

/* Landing Page */

.featured-block {
  position: relative;
  margin-bottom: 40px;
}

.featured-block-link {
  display: block;
  color: white;
  text-decoration: none;
}

.featured-block-image img {
  aspect-ratio: 645/386;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.featured-block-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: rgba(51, 51, 51, 0.75);
}

.featured-block-title {
  font-family: var(--font-sans-serif);
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin: 0;
}

/* Contacts Page */

.contacts-row {
  margin-left: -20px;
  margin-right: -20px;
}

.contacts-col {
  padding-left: 20px;
  padding-right: 20px;
}

.contacts-block-title {
  font-family: var(--font-sans-serif);
  font-weight: 700;
  font-size: 30px;
  padding: 10px 10px 10px 20px;
  border-left: 10px solid var(--red);
  margin: 0 0 40px;
}

.contacts-block-title.media_contacts_hsc {
  border-color: var(--turquoise);
}

.contacts-block {
  border: 1px solid var(--light-gray);
  margin-bottom: 40px;
}

.contacts-block-wrap {
  padding: 10px;
  display: flex;
}

.contacts-block-image {
  flex: 0 0 150px;
  max-width: 33%;
  margin-right: 20px;
}

.contacts-block-content {
  flex: 1;
  font-size: 16px;
  color: #222;
}

.contacts-block-content a {
  text-decoration: underline;
}

.contacts-block-name {
  font-family: var(--font-sans-serif);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 5px;
}

.contacts-block-details p {
  margin: 0 0 5px;
}

.contacts-block-details ul { 
  margin: 0 0 10px;
  padding-left: 20px;
}

.contacts-block-details li {
  margin: 0;
}

.callout-box {
  background-color: #F5F5F5;
  padding: 20px;
  margin-bottom: 40px;
}

.callout-box .textImage-left {
  margin-right: 20px;
}

.callout-box .textImage-left img {
  width: 128px;
  height: auto;
}

.callout-box .textImage-left + p {
  padding-top: 30px;
}