/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Custom Properties for Consistent Spacing */
:root {
  --container-max-width: 1400px;
  --section-padding-vertical: 6rem;
  --section-padding-horizontal: 4rem;
  --section-padding-horizontal-mobile: 2rem;
  --gap-large: 4rem;
  --gap-medium: 3rem;
  --gap-small: 2rem;
}

/* Skip to content link for accessibility */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #c1e25d;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
  top: 0;
}

h1,
h2 {
  font-family: "Lyon Display Light", Arial, sans-serif;
}

h1 span,
h2 span,
h4 span {
  font-family: "Lyon Display Light", Arial, sans-serif;
}

h1,
.h1 {
  font-size: clamp(2.5rem, 0.5053rem + 6.383vw, 6.25rem);
  font-weight: 300;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: clamp(2.25rem, 0.9535rem + 4.1489vw, 4.6875rem);
  font-weight: 300;
  line-height: 1;
}

h3,
.h3 {
  font-family: "Lyon Display Light", Arial, sans-serif;
  font-size: clamp(2rem, 1.734rem + 0.8511vw, 2.5rem);
  font-weight: 300;
  line-height: 1.25;
}

p {
  margin: 10px 0;
}

.lead {
  font-family: "Lyon Display Light", Arial, sans-serif;
  font-size: clamp(1.3125rem, 1.2128rem + 0.3191vw, 1.5rem);
  line-height: 1.25;
}

/* Section Background */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url("imgs/TirNua/header-background.jpg") no-repeat center
    center/cover;
  background: image-set(
      url("imgs/TirNua/header-background.webp") type("image/webp"),
      url("imgs/TirNua/header-background.jpg") type("image/jpeg")
    )
    no-repeat center center/cover;
  color: #d0d6d9;
  font-family: "Graphik LCS Regular", sans-serif;
}

/* Optional gradient overlay for readability */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #063b50cc 0%,
    #063b50cc 60%,
    #9d9d9d33 100%
  );
}

/* Navbar */
.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 2rem var(--section-padding-horizontal);
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #d0d6d9;
}

.logo span {
  font-size: 0.9rem;
  display: block;
  opacity: 0.8;
}

.nav-links a {
  color: #d1e4c4;
  margin: 0 1.5rem;
  text-decoration: none;
  font-size: 1.3rem;
  transition: 0.3s;
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: #b4e34a;
}

/* Contact Button */
.contact-btn {
  border: 1px solid #b4e34a;
  color: #b4e34a;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s;
  font-size: 1.2rem;
}

.contact-btn:hover {
  background: #b4e34a;
  color: #0a1f2f;
}

/* Hero Text */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 8rem var(--section-padding-horizontal);
}

.hero-content > * {
  max-width: 600px;
}

.hero-content h1 {
  color: #c1e25d;
  font-size: 3.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.14;
}

.hero-content p {
  font-size: 1.05rem;
  color: #cdd9e1;
  line-height: 1.6;
  font-weight: 400;
}

/* Hero CTA Button */
.hero-cta {
  display: inline-block;
  margin-top: 1.5rem;
  border: 1px solid #b4e34a;
  color: #b4e34a;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Graphik LCS Regular", sans-serif;
  letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s;
}

.hero-cta:hover {
  background: #b4e34a;
  color: #0a1f2f;
}

/* Section Styling */
.who-we-are {
  background-color: #f3f6f7; /* soft grey-blue background */
  padding: 6rem 0;
  font-family: "Graphik LCS Regular", sans-serif;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-horizontal);
  gap: var(--gap-large);
}

/* Text Content */
.text-content {
  flex: 1;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #446175;
  font-weight: 300;
  font-size: 0.9rem !important;
  margin-bottom: 1.2rem;
}

.headline {
  color: #12333f;
  font-size: 3.75rem;
  line-height: 1.14;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.headline span {
  font-style: italic;
}

.text-content p {
  color: #2c4454;
  font-size: 1.07rem;
  line-height: 1.52;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.text-content ul {
  color: #2c4454;
  font-size: 1.07rem;
  line-height: 1.52;
  font-weight: 400;
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.text-content ul li {
  margin-bottom: 0.8rem;
}

/* Image Content */
.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-content img {
  width: 100%;
  max-width: 550px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.image-content video {
  width: 100%;
  max-width: 550px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1040px) {
  .container {
    flex-direction: column;
    text-align: left;
    gap: var(--gap-small);
    padding: 0 var(--section-padding-horizontal-mobile);
  }

  .headline {
    font-size: 2.2rem;
  }

  .image-content img,
  .image-content video {
    max-width: 100%;
  }
}

/* Section Base */
.what-we-do {
  background-color: #063b50; /* deep teal-blue background */
  color: #d0d6d9;
  padding: 6rem 0;
  font-family: "Graphik LCS Regular", sans-serif;
}

.container-what-we-do {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-horizontal);
}

/* Headings */
.section-label-what-we-do {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  color: #d0d6d9;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.67;
}

/* Headings */
.section-label-sectors {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  color: #c1e25d;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.67;
}

.headline-what-we-do {
  font-size: 3.75rem;
  font-weight: 300;
  color: #c1e25d; /* light green highlight color */
  margin-bottom: 3rem;
  line-height: 1.14;
}

.headline-sectors {
  font-size: 3.75rem;
  font-weight: 300;
  color: #d0d6d9; /* light green highlight color */
  margin-bottom: 3rem;
  line-height: 1.14;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card Styling */
.card {
  background: #ffffff;
  color: #0a3846;
  padding: 1.25rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: #d0d6d9 1px solid;
  border-radius: 5px;
}

.card-no-background {
  border: #d0d6d9 1px solid;
  color: #d0d6d9;
  padding: 1.25rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card-title-grid {
  font-size: 25px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.card h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
  line-height: 1.14;
}

.card p {
  font-size: 1.1rem;
  color: #3c4d55;
  line-height: 1.48;
  font-weight: 400;
}

/* Why TirNua Section */
.who-we-are .container {
  display: block;
  text-align: center;
}

.who-we-are .headline {
  margin-bottom: 3rem;
}

.who-we-are .card-grid {
  text-align: left;
}

/* Why TirNua Cards */
.why-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.why-card-image {
  height: 15.8125rem; /* 253px */
  overflow: hidden;
  background: #0a3846;
  flex-shrink: 0;
}

.why-card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #0a3846;
}

.why-card-content h3 {
  font-size: 2.8125rem; /* 45px */
  font-weight: 300;
  color: #c1e25d;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-card-content p {
  font-size: 1.0625rem; /* 17px */
  color: #d0d6d9;
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1040px) {
  .headline {
    font-size: 2rem;
  }

  .card-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    padding: 1.5rem;
  }

  .why-card {
    height: auto;
    min-height: 28rem;
  }

  .why-card-image {
    height: 12rem;
  }

  .why-card-content h3 {
    font-size: 2rem;
  }

  .why-card-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    height: auto;
    min-height: 24rem;
  }

  .why-card-image {
    height: 10rem;
  }

  .why-card-content {
    padding: 1.5rem;
  }

  .why-card-content h3 {
    font-size: 1.75rem;
  }
}

/* General Section Layout */
.testimonial-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 4rem var(--section-padding-horizontal);
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle wave-like background lines */
.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("imgs/TirNua/testimonal-background.png") no-repeat center
    center/cover;
  background: image-set(
      url("imgs/TirNua/testimonal-background.webp") type("image/webp"),
      url("imgs/TirNua/testimonal-background.png") type("image/png")
    )
    no-repeat center center/cover;
  opacity: 0.4;
  z-index: 0;
}

/* Left content */
.testimonial-content {
  width: 35%;
  position: relative;
  z-index: 1;
}

.quote-icon {
  color: #91c36c;
  font-size: 6rem;
}

.testimonial-text {
  font-size: 2.2rem;
  line-height: 1.14;
  color: #12304a;
  font-family: "Lyon Display Light", serif;
}

.author {
  margin-top: 22rem;
  position: absolute;
  text-align: center;
}

.author-overlay {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.author-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #d0d6d9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Graphik LCS Regular", sans-serif;
  margin: 0;
}

.author-title {
  font-size: 0.9rem;
  color: #91c36c;
  text-transform: uppercase;
  font-family: "Graphik LCS Regular", sans-serif;
  margin: 0;
}

/* Right image */
.testimonial-image {
  width: 50%;
  position: relative;
  z-index: 1;
}

.testimonial-image-desktop {
  display: block;
  width: 100%;
  max-height: 450px;
  border-radius: 30% / 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-image-mobile {
  display: none;
  width: 100%;
  border-radius: 30% / 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
  width: 100%;
  border-radius: 30% / 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1040px) {
  .testimonial-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem var(--section-padding-horizontal-mobile);
    text-align: center;
  }

  .testimonial-section::before {
    background-position: center top;
    background-size: cover;
    opacity: 0.3;
  }

  .testimonial-content {
    width: 100%;
    margin-bottom: 2rem;
  }

  .quote-icon {
    font-size: 4.5rem;
    margin-bottom: 0.1rem;
    text-align: initial;
  }

  .testimonial-text {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #12304a;
    text-align: initial;
  }

  .testimonial-image {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .testimonial-image-desktop {
    display: none;
  }

  .testimonial-image-mobile {
    display: block;
  }

  .testimonial-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }

  .author {
    margin-top: 1.5rem;
    position: relative;
    text-align: center;
  }

  .author-name {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .author-title {
    font-size: 0.85rem;
    color: #91c36c;
    text-transform: uppercase;
    margin-top: 0.2rem;
  }
}

/* Section Base */
.contact-section {
  background-color: #032c3c; /* deep teal-blue */
  color: #d0d6d9;
  padding: 6rem 0;
  font-family: "Graphik LCS Regular", sans-serif;
}

.container-contact-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-horizontal);
  gap: var(--gap-medium);
}

/* Left Column (Text) */
.contact-text {
  flex: 1;
}

.section-label-contact-us {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #c1e25d; /* bright green accent */
  margin-bottom: 1rem;
}

.headline-contact-us {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 1.14;
  color: #eaf0ed;
  margin-bottom: 1.5rem;
}

.contact-text p:not(.section-label-contact-us) {
  color: #b8c9c3;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.info-item strong {
  color: #c1e25d;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  text-transform: capitalize;
}

.info-item p a {
  color: #b3b3b3;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item p a:hover {
  color: #c1e25d;
}

/* Right Column (Image) */
.contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.contact-image video {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Footer container */
.footer {
  position: relative;
  background-color: #063b50;
  color: #f9f9f9;
  padding: 80px 0 1rem 0;
  overflow: hidden;
}

/* Overlay pattern background */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("imgs/TirNua/footer-background.png") no-repeat center/cover;
  background: image-set(
      url("imgs/TirNua/footer-background.webp") type("image/webp"),
      url("imgs/TirNua/footer-background.png") type("image/png")
    )
    no-repeat center/cover;
  opacity: 0.15;
  z-index: 0;
}

/* Content layout */
.footer-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
  margin-top: 7rem;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--section-padding-horizontal);
}

/* Left side */
.footer-left {
  flex: 1 1 45%;
  min-width: 280px;
}

.footer-logo {
  margin-top: 100px;
  width: 250px;
  margin-bottom: 10px;
}

.footer-links {
  position: relative;
  z-index: 10;
  font-family: "Graphik LCS Regular", sans-serif;
  padding: 5rem var(--section-padding-horizontal) 0
    var(--section-padding-horizontal);
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

.footer-links a {
  color: #d0d6d9;
  text-decoration: none;
  margin-right: 40px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer-links a:hover {
  color: #a2cf59;
}

/* Right side */
.footer-right {
  flex: 0 1 0%;
  min-width: 280px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 40px;
  font-family: "Graphik LCS Regular", sans-serif;
}

.footer-right h3 {
  color: #a2cf59;
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-right address {
  font-style: normal;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item-footer a {
  color: #d0d6d9;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.8;
}

.contact-item-footer a:hover {
  color: #a2cf59;
}

.icon-footer {
  font-size: 16px;
  color: #a2cf59;
}

.icon-footer img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(88%) sepia(13%) saturate(2421%)
    hue-rotate(29deg) brightness(89%) contrast(82%);
}

img.icon-footer {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(88%) sepia(13%) saturate(2421%)
    hue-rotate(29deg) brightness(89%) contrast(82%);
}

/* Bottom disclaimer */
.footer-bottom {
  position: relative;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px var(--section-padding-horizontal) 0
    var(--section-padding-horizontal);
  z-index: 1;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-size: 0.95rem;
  line-height: 1.05;
  opacity: 0.8;
  font-weight: 400;
  font-family: "Graphik LCS Regular", sans-serif;
}

/* Responsive */
@media (max-width: 1040px) {
  .container-contact-us {
    flex-direction: column;
    text-align: left;
    padding: 0 var(--section-padding-horizontal-mobile);
    gap: var(--gap-small);
  }

  .headline-contact-us {
    font-size: 2.4rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-image img,
  .contact-image video {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    padding: 0 var(--section-padding-horizontal-mobile);
  }

  .footer-links {
    padding: 5rem var(--section-padding-horizontal-mobile) 0
      var(--section-padding-horizontal-mobile);
  }

  .footer-bottom {
    padding: 20px var(--section-padding-horizontal-mobile) 0
      var(--section-padding-horizontal-mobile);
  }

  .footer-right {
    border-left: none;
    padding-left: 0;
    margin-top: 40px;
  }

  .footer-links a {
    display: inline-block;
    margin-bottom: 10px;
  }

  .nav-links {
    display: none;
  }

  .navbar {
    padding: 1rem var(--section-padding-horizontal-mobile);
  }

  .hero-content {
    padding: 8rem var(--section-padding-horizontal-mobile);
  }

  .container-what-we-do {
    padding: 0 var(--section-padding-horizontal-mobile);
  }

  .contact-btn {
    display: none;
  }
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: transparent;
  color: #c1e25d;
  border: 2px solid #c1e25d;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 999;
}

.back-to-top--active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #c1e25d;
  color: black;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.show-more-btn {
  display: none;
}

@media (max-width: 1040px) {
  .show-more-btn {
    display: block;
  }
}

/* Standard page content styling for legal pages */
.standard-page-content {
  background-color: #f3f6f7;
  padding: 6rem 0;
  font-family: "Graphik LCS Regular", sans-serif;
}

.hero-section--short {
  height: auto;
  min-height: unset;
  padding-bottom: 4rem;
}

/* Standard page content — consistent font */
.standard-page-content p,
.standard-page-content blockquote,
.standard-page-content cite {
  font-family: "Graphik LCS Regular", sans-serif;
}

.standard-page-content .lead {
  font-family: "Graphik LCS Regular", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
}

/* Blockquote styling for press/news pages */
.standard-page-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid #b4e34a;
  background: #eaeff1;
  border-radius: 0 5px 5px 0;
}

.standard-page-content blockquote p {
  font-style: italic;
  color: #2c4454;
  font-size: 1.05rem;
  line-height: 1.6;
}

.standard-page-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: #12333f;
  font-size: 0.95rem;
}

/* Press page date heading */
.standard-page-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #12333f;
  font-size: 1.5rem;
}
