/* ========================================
   VITERBO HEADER STYLES
   ======================================== */

/* Brand Colors 
:root {
  --white: #FFFFFF;
  --primary-navy: #00344b;
  --primary-red: #ee323a;
  --secondary-flood: #76cfe7;
  --secondary-sunrise: #f1aa1e;
  --silver: #a3adb4;
  --gold: #9f762b;
  --mohagany: #693534;
}
*/

/* ========================================
   HEADER STRUCTURE
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--primary-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-main {
  background: var(--primary-navy);
  padding: 0.5rem 0 1.5rem 0; 
}

.header-content {
  display: flex;
  align-items: flex-end; 
  justify-content: space-evenly;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 0.5rem;
  min-height: 60px; 
}

.header-content > .desktop-header-actions {
  margin-left: auto;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .header-main {
  background: var(--primary-navy);
  padding: 0.25rem 0 0.75rem 0; 
}
}
/* ========================================
   SITE BRANDING
   ======================================== */

.site-branding {
  align-self: center;
}

.navbar-brand {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
}

.navbar-brand img {
  margin-right: 15px;
  max-height: 60px;
}

.site-branding__text {
  margin-left: 0;
  display: inline-block;
  line-height: 1;
}

.site-branding__text a {
  color: var(--white) !important;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}

/* Hide main navigation in desktop header */
.site-branding .navbar-nav,
.site-branding #block-mainnavigation-4 {
  display: none !important;
}

@media (max-width: 767.98px) {
    .navbar-brand {
        width: 65%;
        height: 65%;
    }
}

/* ========================================
   DESKTOP HEADER ACTIONS
   ======================================== */

.desktop-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.action-btn {
  color: var(--white);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px; 
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.action-btn:hover,
.action-btn:focus {
  background-color: var(--secondary-sunrise);
  text-decoration: none;
}
/* Override Bootstrap flex classes for action buttons */
@media (min-width: 577px) {
  .utility-navigation.flex-column {
    flex-direction: row !important; /* Force horizontal until 577px */
    gap: 0.5rem; /* Slightly bigger gap */
  }
  
  .utility-navigation.flex-column li {
    margin-bottom: 0 !important; /* Remove Bootstrap's bottom margin */
  }
}

/* Make buttons properly sized on tablet */
@media (max-width: 768px) and (min-width: 577px) {
  .utility-navigation .action-btn {
    padding: 6px 12px !important; /* Bigger padding */
    font-size: 13px !important; /* Bigger text */
    font-weight: 600 !important; /* Keep bold */
    letter-spacing: 0.3px !important; /* Slight spacing */
  }
}

/* Hide at 576px and below */
@media (max-width: 576px) {
  .utility-navigation {
    display: none !important;
  }
}

/* ========================================
   DESKTOP SEARCH
   ======================================== */

.desktop-search-container {
  display: flex;
  align-items: center;
  position: relative;
}

.search-toggle {
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  outline: none;
}

.search-toggle svg {
  width: 22px; 
  height: 22px; 
}

.search-toggle:hover,
.search-toggle:focus {
  background: var(--secondary-sunrise);
  color: var(--primary-navy);
}

.search-toggle:focus {
  outline: none;
  border: 2px solid transparent;
}

.search-toggle.active {
  background: var(--gold);
  color: var(--primary-navy);
}

.desktop-search {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.desktop-search.collapsed {
  width: 40px;
  opacity: 0;
  pointer-events: none;
}

.desktop-search.expanded {
  width: 250px;
  opacity: 1;
  pointer-events: all;
  padding-right: 45px;
}

.desktop-search input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 15px;
  font-size: 14px;
  background: transparent;
  border-radius: 20px;
}

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

/* ========================================
   MOBILE MENU OVERLAY
   ======================================== */

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-width: 100vw; 
  overflow-x: clip; 
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--primary-navy);
  padding: 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

@media (max-width: 767.98px) {
  .mobile-menu-container {
    max-width: 100%; 
    padding: 3rem 2rem; 
  }
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateX(0);
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ========================================
   MOBILE MENU CLOSE BUTTON
   ======================================== */

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: transparent;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-close:hover {
  background: var(--secondary-sunrise);
  color: var(--primary-navy);
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
}

/* ========================================
   MOBILE SEARCH SECTION
   ======================================== */

.mobile-search-section {
  margin-bottom: 2rem;
}

.mobile-search-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Hide progress throbber */
.mobile-search-section .progress-throbber {
  display: none !important;
}

/* Modern mobile search styling */
.mobile-search-section .form--inline,
.mobile-search-section .form-inline {
  position: relative !important;
  display: block !important;
}

/* Override any flex classes that might constrain width */
.mobile-search-section .d-flex,
.mobile-search-section form.d-flex {
  display: block !important;
  width: 100% !important;
}

.mobile-search-section .form-item,
.mobile-search-section .js-form-item {
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Hide the original search button */
.mobile-search-section .form-actions,
.mobile-search-section .js-form-wrapper,
.mobile-search-section input[type="submit"],
.mobile-search-section button[type="submit"] {
  display: none !important;
}

/* Full width search input with proper rounded borders */
.mobile-search-section input[type="text"],
.mobile-search-section input[name="keys"],
.mobile-search-section .form-control {
  width: 100% !important;
  padding: 12px 50px 12px 16px !important;
  border: 2px solid var(--white) !important;
  border-radius: 25px !important;
  background: var(--white) !important;
  color: var(--primary-navy) !important;
  font-size: 16px !important;
  height: 50px !important;
  box-sizing: border-box !important;
  outline: none !important;
  margin: 0 !important;
}

.mobile-search-section input:focus {
  border: 2px solid var(--gold) !important;
  border-radius: 25px !important;
  box-shadow: 0 0 0 2px rgba(159, 118, 43, 0.2) !important;
  outline: none !important;
}

/* Search submit icon */
.mobile-search-section .search-submit-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: transform 0.2s ease;
  transform-origin: center center;
  outline: none;
  z-index: 2;
}

.mobile-search-section .search-submit-icon:hover,
.mobile-search-section .search-submit-icon:focus {
  transform: translateY(-50%) scale(1.1);
}

.mobile-search-section .search-submit-icon:focus {
  outline: none;
  border: none;
}

/* Clear button */
.mobile-search-section .search-clear-icon {
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
  transform-origin: center center;
  outline: none;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}

.mobile-search-section .search-clear-icon.visible {
  opacity: 1;
  visibility: visible;
}

.mobile-search-section .search-clear-icon:hover {
  transform: translateY(-50%) scale(1.1);
  color: var(--primary-navy);
}

.mobile-search-section .search-clear-icon:focus {
  outline: none;
  border: none;
}

/* ========================================
   MOBILE ACTION CARDS
   ======================================== */

.mobile-action-section {
  margin: 2rem 0;
}

.action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px; 
  min-height: 60px;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.action-card.primary {
  background: var(--secondary-sunrise);
  color: var(--white);
}

.action-card.primary:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
}

.action-card.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.action-card.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}

.action-title {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.action-subtitle {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 400;
}

/* ========================================
   MOBILE MENU FOOTER LOGO
   ======================================== */

.mobile-menu-container #block-menusitebranding {
  /* Override Bootstrap navbar-brand */
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  
  /* Override Bootstrap mr-auto */
  margin-right: 0 !important;
  margin-left: 0 !important;
  margin: 2rem 0 0 0 !important;
  
  /* Layout */
  display: block !important;
  padding: 2rem 0 0 0 !important;
  text-align: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  
  /* Remove any flex properties */
  align-self: stretch !important;
}

/* Target all Bootstrap classes specifically */
.mobile-menu-container #block-menusitebranding.navbar-brand.mr-auto {
  width: 100% !important;
  max-width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  flex: none !important;
}

/* Fix the wrapper */
.mobile-menu-container #block-menusitebranding .wrapper {
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Fix the link */
.mobile-menu-container #block-menusitebranding a {
  display: inline-block !important;
  width: auto !important;
  text-align: center !important;
}

/* Fix the image */
.mobile-menu-container #block-menusitebranding img {
  max-width: 150px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
}


/* * * * * * * * * * * * * * * * * * * * 
 *  Card Three CTA Right Image Styles
 * * * * * * * * * * * * * * * * * * * */
.card-cta-container {
  background: var(--primary-navy);
  padding: 2rem 1rem 0 1rem;
  text-align: center;
  position: relative;
  overflow: hidden; /* Cuts off bottom half of image */
  margin-bottom: 1.5rem;
}

.card-cta-title {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.card-cta-description {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: none;
}
.card-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.cta-button a {
  display: block;
  background-color: var(--secondary-sunrise);
  color: var(--primary-navy) !important;
  text-decoration: none !important;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  min-width: 250px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-button a:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
}
.card-cta-image {
  width: 350px;
  height: 175px; /* Only show top half */
  margin: 2rem auto 0 auto;
}
.card-cta-image img {
  width: 350px;
  height: 350px; /* Full size image */
  object-fit: cover;
  object-position: top; /* Show top portion */
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .card-three-cta-right-image {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .card-cta-container {
    width: 96%;
    margin-left: auto; /* Align to right */
    margin-right: 0;
    border-radius: 175px 0 0 175px; /* Pill shape on left side */
    display: flex;
    align-items: center;
    text-align: left;
    padding: 2rem;
    overflow: hidden; /* Hide the cut-off portion */
    height: 350px;
    margin-bottom: 5rem;
  }
  
  .card-cta-content {
    flex: 1;
    margin-bottom: 0;
    margin-right: 2rem;
    margin-left: 10%;
  }
  .card-cta-title {
    font-size: 1.6rem;
  }
  .card-cta-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .card-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
  }
  .cta-button a {
    min-width: 200px;
    padding: 0.8rem 1.5rem;
  }
  .card-cta-image {
    width: 450px;
    height: 450px; /* Show full image */
    margin: 0;
    flex-shrink: 0;
    transform: translateX(30px); /* Move image right to cut off edge */
  }
  .card-cta-image img {
    width: 450px;
    height: 450px;
    object-position: center; /* Center image on desktop */
  }
}
@media (min-width: 992px) {
  .card-cta-container {
    width: 95%; /* Slightly wider on large screens */
    height: 450px; /* Taller container */
    padding: 3rem; /* More generous padding */
    border-radius: 250px 0 0 250px; /* Larger pill radius */
  }

  .card-cta-content {
    margin-left: 8%; /* Adjust left margin for larger space */
    margin-right: 3rem;
  }

  .card-cta-title {
    font-size: 2rem; /* Larger title */
    margin-bottom: 1.25rem;
  }

  .card-cta-description {
    font-size: 1.3rem; /* Larger description */
    margin-bottom: 2rem;
  }

  .card-cta-buttons {
    gap: 1.5rem; /* More space between buttons */
  }

  .cta-button a {
    min-width: 220px; /* Slightly wider buttons */
    padding: 1rem 2rem; /* More generous button padding */
    font-size: 1rem;
  }

  .card-cta-image {
    width: 550px; /* Larger image */
    height: 550px;
    transform: translateX(40px); /* Push further right for larger screen */
  }

  .card-cta-image img {
    width: 550px;
    height: 550px;
  }
}

@media (min-width: 1440px) {
  .card-cta-description {
    display: inline;
  }
  .card-cta-description p:last-child {
    margin-bottom: 2rem;
  }
}

/* Events & News Card Custom Styling */

.custom-events-news-card {
  background: var(--primary-navy);
  color: white;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  border-radius: 0;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
}

.custom-events-news-card .card-main-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.custom-events-news-card .card-main-heading .field {
  display: inline;
  margin: 0 auto;
}

.custom-events-news-card .card-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  margin-bottom: 1rem;
}

.custom-events-news-card .card-description {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.custom-events-news-card .events-news-content-wrapper {
  flex: 1;
  padding: 1.5rem;
}

.custom-events-news-card .views-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  height: 100%;
}

.custom-events-news-card .news-section,
.custom-events-news-card .events-section {
  flex: 1;
  min-height: 0;
}

.custom-events-news-card .custom-view-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--secondary-sunrise);
}

.custom-events-news-card .view-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.custom-events-news-card .view-more-link {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--secondary-sunrise);
  color: var(--primary-navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.custom-events-news-card .view-more-link:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
}

.custom-events-news-card .clean-view-content {
  font-size: 1rem;
  line-height: 1.6;
  color: white;
}

/* News Section */
.custom-events-news-card .news-section .content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
  margin-top: 2rem;
}

.custom-events-news-card .news-section .image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 8px;
}

.custom-events-news-card .news-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-events-news-card .news-section .wrapper {
  flex: 1;
  padding: 0 !important;
}

.custom-events-news-card .news-section .wrapper h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  margin-top: 0;
}

.custom-events-news-card .news-section .wrapper h2 a {
  color: white;
  text-decoration: none;
}

.custom-events-news-card .news-section .wrapper h2 a:hover {
  color: var(--secondary-sunrise);
  text-decoration: underline;
}

.custom-events-news-card .news-section .wrapper {
  font-size: 0;
}

.custom-events-news-card .news-section .wrapper h2 {
  font-size: 1.125rem;
}

/* Events Section */
.custom-events-news-card .card-header-section {
  display: none;
}

.custom-events-news-card .events-section .views-field-nothing-1 {
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}

.custom-events-news-card .events-section .views-field-nothing {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  min-height: 60px !important;
}

.custom-events-news-card .events-section .views-field-nothing-1 .date {
  background: silver;
  color: var(--primary-navy);
  padding: 0.3rem;
  border-radius: 8px;
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.custom-events-news-card .events-section .view-content > div {
  display: flex;
  flex-direction: row; 
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.custom-events-news-card .events-section .date .month {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
}

.custom-events-news-card .events-section .date .day {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.custom-events-news-card .events-section .ev-details {
  text-decoration: none;
  display: block;
  width: 100%;
}

.custom-events-news-card .events-section .title {
  font-weight: 600;
  color: white;
  font-size: 1.125rem;
  line-height: 1.3;
  display: block;
}

.custom-events-news-card .events-section .ev-details:hover .title {
  color: var(--secondary-sunrise);
  text-decoration: underline;
}

.custom-events-news-card .mb-4 {
  margin-bottom: 0 !important;
}

.custom-events-news-card .clearfix::after {
  display: none;
}

/* Tablet Styles */
@media (min-width: 769px) {
  .custom-events-news-card {
    width: 100%;
    margin: 5rem auto 2rem auto;
  }

  .custom-events-news-card .view-title {
    font-size: 2rem;
  }

  .custom-events-news-card .news-section .content {
    margin-top: 1.75rem;
  }

  .custom-events-news-card .news-section .image {
    width: 120px;
    height: 120px;
  }

  .custom-events-news-card .events-news-content-wrapper {
    padding: 1rem 1.5rem;
  }
  
  .custom-events-news-card .views-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .custom-events-news-card .custom-view-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .custom-events-news-card .events-section .view-content > div {
    margin-bottom: 1rem;
  }
}

/* Desktop Styles */
@media (min-width: 1200px) {
  .custom-events-news-card {
    width:100%;
    margin-top: 5rem;
  }

  .custom-events-news-card .news-section .content {
    margin-top: 2rem;
  }

  .custom-events-news-card .news-section .image {
    width: 150px;
    height: 150px;
  }

  .custom-events-news-card .events-section .title {
    font-size: 1.5rem;
  }

  .custom-events-news-card .events-section .views-field-nothing-1 .date {
    width: 100px;
    height: 100px;
  }

  .custom-events-news-card .events-section .date .month {
    font-size: 1.5rem;
  }

  .custom-events-news-card .news-section .wrapper {
    font-size: 1rem;
  }

.custom-events-news-card .news-section .wrapper h2 {
    font-size: 1.5rem;
  }

  .custom-events-news-card .card-header-section {
    padding: 2rem 3rem 1rem;
    border-bottom: 2px solid var(--secondary-sunrise);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .custom-events-news-card .events-news-content-wrapper {
    padding: 1rem;
  }
  
  .custom-events-news-card .card-main-heading {
    font-size: 2.25rem;
  }

  .custom-events-news-card .events-section .view-content > div {
    margin-bottom: 2rem;
  }

  .custom-events-news-card .view-more-link {
    display: flex;
  }

  .custom-events-news-card .custom-view-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}

/* Enhanced announcement banner styling */
.block-views-blocksite-announcements-block-1 {
  background: var(--primary-red);
  color: white;
  padding: 20px 20px;
  text-align: center;
  margin: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-bottom: 3px solid var(--primary-navy);
}

/* Announcement text styling */
.view-site-announcements .views-row {
  margin: 0;
}

.view-site-announcements p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}

.view-site-announcements a {
  color: var(--primary-navy);
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.2s ease;
}

.view-site-announcements a:hover {
  color: white;

  text-decoration: none;
}

@media (max-width: 768px) {
  .block-views-blocksite-announcements-block-1 {
    padding: 12px 15px;
  }
  
  .view-site-announcements p {
    font-size: 14px;
  }
}
