/* Newsroom Common Styles */
.newsroom-page,
.newsroom-detail-page {
  font-family: 'ProximaNova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: #5b5b5b;
  background-color: #f8f9fa; }

/* Press Release Header Section */
.press-release-header-section {
  background: linear-gradient(310deg, #77923c, #053d63);
  padding: 20px 0;
  text-align: center;
  opacity: 0.95; }

.press-header-block {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px; }

/* Horizontal Menu Section - Mobile/Tablet Only */
.horizontal-menu-wrapper {
  display: none;
  /* Hidden on desktop by default */
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0; }

.horizontal-menu-container {
  overflow-x: auto;
  overflow-y: visible;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #2D7D32 #f0f0f0;
  padding: 0 20px; }

.horizontal-menu-container::-webkit-scrollbar {
  height: 6px; }

.horizontal-menu-container::-webkit-scrollbar-track {
  background: #f0f0f0; }

.horizontal-menu-container::-webkit-scrollbar-thumb {
  background: #2D7D32;
  border-radius: 3px; }

.horizontal-menu-container::-webkit-scrollbar-thumb:hover {
  background: #1B5E20; }

.horizontal-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0; }

.horizontal-menu-item {
  position: relative;
  white-space: nowrap;
  border-right: 1px solid #e0e0e0; }

.horizontal-menu-item:last-child {
  border-right: none; }

.horizontal-menu-link {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 15px;
  font-family: 'ProximaNova', sans-serif;
  font-weight: 500;
  white-space: nowrap; }

.horizontal-menu-link:hover {
  background: #f8f9fa;
  color: #2D7D32;
  text-decoration: none; }

.horizontal-menu-item.active .horizontal-menu-link {
  background: #e8f5e9;
  color: #2D7D32;
  font-weight: 600;
  border-bottom: 3px solid #2D7D32; }

.horizontal-menu-link .menu-arrow {
  margin-left: 8px;
  transition: transform 0.3s;
  display: inline-flex;
  align-items: center; }

.horizontal-menu-link .menu-arrow img {
  width: 10px;
  height: auto;
  display: block;
  transition: transform 0.3s; }

.horizontal-menu-item.open .menu-arrow,
.horizontal-menu-item.open .menu-arrow img {
  transform: rotate(180deg); }

/* Horizontal Menu Dropdown Containers */
.horizontal-submenu-container {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1001;
  min-width: 280px;
  white-space: normal; }

.horizontal-submenu-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1001;
  list-style: none;
  margin: 0;
  min-width: 220px;
  max-height: 400px;
  overflow-y: auto;
  white-space: normal; }

/* Mobile-specific dropdown positioning */
@media (max-width: 767px) {
  .horizontal-menu-item {
    position: static;
    /* Remove relative positioning on mobile */ }
  .horizontal-submenu-container,
  .horizontal-submenu-list {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    max-height: 70vh;
    overflow-y: auto;
    border: none;
    border-top: 1px solid #e0e0e0;
    z-index: 900;
    /* Below sidebar (1000) but above horizontal menu (50) */ }
  .horizontal-submenu-container {
    padding: 20px 15px; }
  .horizontal-submenu-list {
    padding: 10px 0; } }

.horizontal-submenu-list .submenu-item {
  padding: 0; }

.horizontal-submenu-list .submenu-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 14px; }

.horizontal-submenu-list .submenu-link:hover {
  background: #f8f9fa;
  color: #2D7D32;
  padding-left: 25px; }

.horizontal-submenu-list .submenu-item.active .submenu-link {
  background: #e8f5e9;
  color: #2D7D32;
  font-weight: 600;
  border-left: 3px solid #2D7D32;
  padding-left: 22px; }

/* Backdrop for mobile dropdowns - REMOVED per user request */
.horizontal-dropdown-backdrop {
  display: none !important; }

/* Animation for dropdowns */
.horizontal-submenu-container,
.horizontal-submenu-list {
  animation: slideDown 0.2s ease-out; }

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

/* Mobile animation - slide up from bottom */
@media (max-width: 767px) {
  .horizontal-submenu-container,
  .horizontal-submenu-list {
    animation: slideUp 0.3s ease-out; }
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(100%); }
    to {
      opacity: 1;
      transform: translateY(0); } } }

.greenpal-logo-press {
  margin-bottom: 30px; }

.greenpal-logo-press img {
  filter: brightness(0) invert(1); }

.press-title-hub {
  display: flex;
  justify-content: center;
  margin: 5px 0;
  position: relative; }

.press-content {
  font-family: 'ProximaNova', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 1.1px;
  color: #fff;
  margin: 0 6px;
  position: relative;
  z-index: 1; }

.press-rectangle {
  width: 100%;
  height: 18px;
  background-color: #9ac540;
  position: absolute;
  bottom: 4px;
  z-index: 0; }

.press-rectangle-desktop {
  width: 658px; }

.press-rectangle-1,
.press-rectangle-2 {
  display: none;
  /* Hidden by default, shown on mobile */ }

.press-description {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  max-width: 700px;
  margin: 0px auto 0; }

/* Hero Section */
.newsroom-hero {
  background: linear-gradient(135deg, #2D7D32 0%, #1B5E20 100%);
  color: white;
  padding: 60px 0;
  margin-bottom: 40px; }

.newsroom-title {
  font-size: 42px;
  font-weight: 700;
  font-family: 'ProximaNova', sans-serif;
  margin: 0 0 15px;
  color: #1a1a1a; }

.newsroom-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin: 0; }

/* Search */
.newsroom-search {
  margin-bottom: 40px;
  margin-top: 30px; }

.newsroom-search-form {
  max-width: 600px; }

.newsroom-search-wrapper {
  display: flex;
  align-items: stretch;
  background: white;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden; }

.newsroom-search-input-container {
  flex: 1;
  position: relative; }

.newsroom-search-input {
  width: 100%;
  height: 60px;
  padding: 0 25px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent; }

.newsroom-search-input::placeholder {
  color: #999; }

.newsroom-search-btn-container {
  position: relative; }

.newsroom-search-btn {
  height: 60px;
  padding: 0 35px;
  background: linear-gradient(135deg, #2D7D32 0%, #1B5E20 100%);
  color: white;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap; }

.newsroom-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 125, 50, 0.3); }

.newsroom-search-btn:active {
  transform: translateY(0); }

.search-arrow {
  filter: brightness(0) invert(1); }

.newsroom-search .form-control {
  height: 45px;
  border-radius: 4px 0 0 4px; }

.newsroom-search .btn-primary {
  height: 45px;
  padding: 0 25px;
  border-radius: 0 4px 4px 0;
  background: #2D7D32;
  border-color: #2D7D32; }

.newsroom-search .btn-primary:hover {
  background: #1B5E20;
  border-color: #1B5E20; }

.search-results-info {
  padding: 15px;
  background: #f8f9fa;
  border-left: 4px solid #2D7D32;
  margin-bottom: 20px;
  border-radius: 4px; }

.clear-search {
  color: #d32f2f;
  margin-left: 15px; }

/* Section Titles */
.section-title {
  font-size: 24px;
  font-weight: 700;
  font-family: 'ProximaNova', sans-serif;
  margin: 0 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #2D7D32;
  color: #1a1a1a;
  text-align: center; }

.results-count {
  font-size: 14px;
  font-weight: normal;
  color: #666; }

.featured-releases {
  margin-bottom: 50px; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }

.featured-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column; }

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }

.featured-image a {
  display: block;
  width: 100%; }

.featured-image img {
  width: 100%;
  height: auto;
  display: block; }

.featured-content {
  padding: 20px; }

.featured-categories {
  margin-bottom: 10px; }

.category-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2D7D32;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  margin-right: 5px; }

.category-badge:hover {
  background: #2D7D32;
  color: white;
  text-decoration: none; }

.featured-title {
  font-size: 18px;
  font-weight: 600;
  font-family: 'ProximaNova', sans-serif;
  margin: 0 0 10px;
  line-height: 1.4; }

.featured-title a {
  color: #1a1a1a;
  text-decoration: none; }

.featured-title a:hover {
  color: #2D7D32; }

.featured-summary {
  font-size: 14px;
  color: #666;
  margin: 0 0 10px;
  line-height: 1.6;
  max-height: 68px;
  overflow: hidden;
  position: relative; }

.featured-summary::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white); }

.featured-date {
  font-size: 13px;
  color: #999; }

/* Press Release Cards */
.press-releases-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px; }

.press-releases-list .section-title {
  grid-column: 1 / -1;
  margin-bottom: 0; }

.press-release-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #f0f0f0; }

.press-release-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px); }

.card-image a {
  display: block;
  width: 100%; }

.card-image img {
  width: 100%;
  height: auto;
  display: block; }

.card-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column; }

.card-meta {
  display: grid;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px; }

.card-meta time {
  margin-right: 15px; }

.category-link {
  color: #2D7D32;
  text-decoration: none;
  margin-right: 10px; }

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

.card-title {
  font-size: 20px;
  font-weight: 600;
  font-family: 'ProximaNova', sans-serif;
  margin: 0 0 10px;
  line-height: 1.4; }

.card-title a {
  color: #1a1a1a;
  text-decoration: none; }

.card-title a:hover {
  color: #2D7D32; }

.card-summary {
  font-size: 15px;
  color: #555;
  margin: 0 0 15px;
  line-height: 1.6;
  max-height: 72px;
  overflow: hidden;
  position: relative;
  flex: 1; }

.card-summary::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white); }

.read-press-release {
  display: block;
  background: #2D7D32;
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  margin-top: auto;
  transition: background 0.3s; }

.read-press-release:hover {
  background: #1B5E20;
  text-decoration: none;
  color: white; }

/* No Results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 8px; }

/* Pagination */
.newsroom-pagination {
  grid-column: 1 / -1;
  margin: 20px auto;
  text-align: center; }
  .newsroom-pagination .pagination {
    justify-content: center; }
    .newsroom-pagination .pagination .page-item {
      margin: 0 3px; }
      .newsroom-pagination .pagination .page-item .page-link {
        color: #1b608e;
        border: 1px solid #bbdefb;
        padding: 8px 16px;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s; }
        .newsroom-pagination .pagination .page-item .page-link:hover {
          background-color: #1b608e;
          border-color: #1b608e;
          color: white; }
        .newsroom-pagination .pagination .page-item .page-link:focus {
          box-shadow: 0 0 0 0.2rem rgba(27, 96, 142, 0.25); }
      .newsroom-pagination .pagination .page-item.active .page-link {
        background-color: #1b608e;
        border-color: #1b608e;
        color: white;
        font-weight: 600; }
      .newsroom-pagination .pagination .page-item.disabled .page-link {
        color: #9e9e9e;
        background-color: #f5f5f5;
        border-color: #e0e0e0;
        opacity: 0.6; }

/* Main Content Wrapper */
.newsroom-page .container-fluid {
  padding-top: 25px;
  padding-bottom: 40px; }

.row {
  display: flex;
  justify-content: center; }

/* Left Sidebar Column - Desktop Only */
.news-sidebar-col {
  padding: 0; }

/* Left Sidebar Menu - Desktop Only */
.news-sidebar {
  background: #fff;
  border-right: 1px solid #e0e0e0;
  padding: 20px 0;
  min-height: 100vh;
  position: sticky;
  top: 0;
  width: 255px;
  border-radius: 12px;
  margin-right: 30px; }

.sidemenulist {
  list-style: none;
  padding: 0;
  margin: 0; }

.menu-item {
  border-bottom: 1px solid #f0f0f0; }

.menu-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer; }

.menu-link:hover {
  background: #f8f9fa;
  color: #2D7D32;
  text-decoration: none; }

.menu-item.active > .menu-link {
  background: #e8f5e9;
  color: #2D7D32;
  font-weight: 600;
  border-left: 4px solid #2D7D32;
  padding-left: 16px; }

.menu-icon {
  font-size: 18px;
  margin-right: 12px;
  min-width: 24px;
  text-align: center; }

.menu-text {
  flex: 1;
  font-size: 15px;
  font-family: 'ProximaNova', sans-serif; }

.menu-arrow {
  margin-left: 8px;
  transition: transform 0.3s;
  display: inline-flex;
  align-items: center; }

.menu-arrow img {
  width: 10px;
  height: auto;
  display: block;
  transition: transform 0.3s; }

.menu-item.open .menu-arrow,
.menu-item.open .menu-arrow img {
  transform: rotate(90deg); }

/* Submenu Container */
.submenu-container {
  padding: 15px 20px;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0; }

.submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f8f9fa; }

.submenu-item {
  margin: 5px 0; }

.submenu-link {
  display: flex;
  justify-content: center;
  padding: 15px 20px;
  color: #666;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s; }

.submenu-link:hover {
  background: #e8f5e9;
  color: #2D7D32;
  text-decoration: none; }

.submenu-item.active .submenu-link {
  background: #e8f5e9;
  color: #2D7D32;
  font-weight: 600; }

/* Date Picker Form */
.date-range-form {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.date-input-group {
  display: flex;
  flex-direction: column;
  gap: 5px; }

.date-input-group label {
  font-size: 13px;
  font-weight: 600;
  color: #666; }

.date-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px; }

.date-input:focus {
  outline: none;
  border-color: #2D7D32; }

.date-submit-btn,
.date-clear-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'ProximaNova', sans-serif;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block; }

.date-submit-btn {
  background: #2D7D32;
  color: white;
  transition: background 0.3s; }

.date-submit-btn:hover {
  background: #1B5E20; }

.date-clear-btn {
  background: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
  transition: all 0.3s; }

.date-clear-btn:hover {
  background: #e0e0e0;
  text-decoration: none; }

/* Sidebar Search Form */
.sidebar-search-form {
  display: flex;
  flex-direction: column;
  gap: 10px; }

.sidebar-search-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px; }

.sidebar-search-input:focus {
  outline: none;
  border-color: #2D7D32; }

.sidebar-search-btn {
  padding: 10px 15px;
  background: #2D7D32;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'ProximaNova', sans-serif;
  cursor: pointer;
  transition: background 0.3s; }

.sidebar-search-btn:hover {
  background: #1B5E20; }

/* Right Sidebar */
.newsroom-sidebar {
  position: sticky;
  top: 20px;
  margin-top: 30px; }

.sidebar-widget {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px; }

.widget-title {
  font-size: 16px;
  font-weight: 700;
  font-family: 'ProximaNova', sans-serif;
  margin: 0 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2D7D32;
  color: #1a1a1a; }

.category-list,
.recent-list {
  list-style: none;
  padding: 0;
  margin: 0; }

.category-list li,
.recent-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0; }

.category-list li:last-child,
.recent-list li:last-child {
  border-bottom: none; }

.category-list li.active a {
  color: #2D7D32;
  font-weight: 600; }

.category-list a,
.recent-list a {
  color: #333;
  text-decoration: none; }

.category-list a:hover,
.recent-list a:hover {
  color: #2D7D32; }

.recent-list time {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 3px; }

.media-contact-widget {
  background: #e8f5e9; }

.rss-link {
  display: inline-block;
  background: #FF6600;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500; }

.rss-link:hover {
  background: #E55C00;
  color: white;
  text-decoration: none; }

.rss-icon {
  margin-right: 5px; }

.sec8 {
  background-image: url(https://greenpal-production.s3.amazonaws.com/images/general/bg-footer.svg) !important; }

/* Footer Social Links */
.footer_social_links {
  padding: 0; }

.twitter_logo a {
  margin: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff00;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  vertical-align: middle; }

.twitter_logo img {
  filter: brightness(0) saturate(100%) invert(1);
  width: 18px;
  height: 18px;
  display: block; }

.pinterest_outer_wrapper {
  width: 40px;
  height: 40px; }

.footer_imp_links {
  margin-left: 0; }

.site-derictory {
  color: #fff; }

.iphone-btn.no-top li a img {
  top: 0px; }

.total_satisfaction p {
  margin-top: 25px;
  width: 284px !important; }

@media only screen and (max-width: 768px) {
  .only_mob.iphone-btn-mob.no-top li a img {
    top: 0px !important; } }

.right {
  background-color: transparent !important; }
  .right li {
    background-color: transparent !important; }

/* Responsive - Tablet */
@media (max-width: 991px) {
  .newsroom-title {
    font-size: 32px; }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr); }
  .press-releases-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; } }

/* Mobile Specific - 767px and below */
@media (max-width: 767px) {
  /* Hide sidebar on mobile */
  .news-sidebar-col {
    display: none !important; }
  .news-sidebar {
    display: none !important; }
  /* Show horizontal menu on mobile */
  .horizontal-menu-wrapper {
    display: block !important; }
  .horizontal-menu-container {
    padding: 0 5px; }
  .horizontal-menu-link {
    padding: 12px 15px;
    font-size: 16px; }
  .press-content {
    font-size: 35px;
    line-height: 1.1; }
  .press-rectangle {
    height: 14px; }
  .press-rectangle-desktop {
    bottom: 8%;
    width: 464px;
    left: 50%;
    transform: translateX(-50%); }
  .press-description {
    font-size: 19px;
    line-height: 1.5; }
  .newsroom-hero {
    padding: 30px 15px; }
  .newsroom-title {
    font-size: 30px; }
  .container,
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px; }
  .date-input {
    font-size: 14px;
    padding: 8px; }
  .sidebar-search-input {
    font-size: 14px;
    padding: 10px; }
  .newsroom-search {
    padding: 15px;
    margin-bottom: 20px; }
  .newsroom-search-input {
    font-size: 19px;
    padding: 12px 45px 12px 15px; }
  .newsroom-search-button {
    right: 15px;
    width: 35px;
    height: 35px; }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; }
  .featured-card {
    margin-bottom: 15px; }
  .featured-image img {
    height: 200px; }
  .featured-content {
    padding: 15px; }
  .featured-title {
    font-size: 23px;
    line-height: 1.3; }
  .featured-summary {
    font-size: 18px;
    line-height: 1.5; }
  .press-releases-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; }
  .press-release-card {
    margin-bottom: 15px; }
  .card-image img {
    height: 200px; }
  .card-content {
    padding: 15px; }
  .card-title {
    font-size: 23px;
    line-height: 1.3;
    margin-bottom: 10px; }
  .card-summary {
    font-size: 18px;
    line-height: 1.5; }
  .read-press-release {
    padding: 10px 18px;
    font-size: 18px; }
  .section-title {
    font-size: 30px;
    margin-bottom: 20px; }
  .newsroom-pagination {
    margin-top: 30px; }
  .pagination-button {
    padding: 8px 16px;
    font-size: 18px; } }

/* Split text into two lines at 550px and below */
@media (max-width: 550px) {
  .press-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    font-size: 33px; }
  .press-line-separator {
    display: none;
    /* Hide the space between lines */ }
  .press-line-1,
  .press-line-2 {
    display: block;
    position: relative;
    margin: 3px 0; }
  .press-rectangle-desktop {
    display: none !important;
    /* Hide desktop rectangle */ }
  .press-line-1 .press-rectangle-1,
  .press-line-2 .press-rectangle-2 {
    display: block;
    width: 100%;
    /* Full width of each text line */
    bottom: 4px;
    left: 0;
    transform: none;
    height: 11px;
    position: absolute;
    opacity: 0.8;
    z-index: -1; } }

@media (max-width: 480px) {
  .press-release-header-section {
    padding: 100px 0px 20px; }
  .press-content {
    font-size: 26px; }
  .press-description {
    font-size: 18px;
    padding-top: 14px; }
  .newsroom-title {
    font-size: 25px; }
  .featured-title,
  .card-title {
    font-size: 20px; }
  .featured-summary,
  .card-summary {
    font-size: 16px; }
  .menu-text {
    font-size: 18px; }
  .section-title {
    font-size: 25px; }
  /* Show 1 card per row on small mobile screens */
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 15px; }
  .press-releases-list {
    grid-template-columns: 1fr;
    gap: 15px; } }
