/* ==========================================================================
   1. GLOBAL STYLES, TYPOGRAPHY & OUTER LAYOUT FRAME
   ========================================================================== */
* {
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html, body {
  background-color: #eef1f4; /* Subtle structural canvas grey to emphasize the centered site box */
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #2c3e50; 
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

/* UNIFIED CENTERING BOXED FRAME WRAPPER */
.page-frame-wrapper {
  max-width: 1240px;       /* Restricts absolute site container width on widescreen monitors */
  margin: 0 auto;          /* Centers the entire page-level grid block perfectly */
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08); /* Outer Canvas Border Frame Shadow Box Drop */
}

/* ==========================================================================
   2. STICKY HEADER & NAV MATRIX (STACKED MULTI-ROW SYSTEM)
   ========================================================================== */
.site-header {
  display: flex;
  background-color: #ffffff; 
  border-bottom: 1px solid #f2f4f4;
  position: -webkit-sticky; 
  position: sticky;          
  top: 0;                    
  z-index: 2000;            
  
  /* MASTER RULES: Vertical stacking layout configuration for desktops */
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 40px 16px 40px;
}

.brand-container {
  display: flex !important;
  flex-direction: row !important; 
  justify-content: space-between !important; /* Pushes logo text left, slogan right on desktop */
  align-items: center !important;
  width: 100% !important;
  padding-left: 10px !important;   
  padding-right: 20px !important;  
  box-sizing: border-box !important;
}

/* Left-Aligned Logo Image Footprint System */
.logo-img-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0; 
}

.header-logo-image {
  height: 65px;       
  width: auto;        
  display: block;
  transition: transform 0.3s ease;
}

.logo-img-wrap a:hover .header-logo-image {
  transform: scale(1.03); 
}

.logo-area {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;     /* Explicitly locks all logo typography to the left edge */
  max-width: 70% !important;
}

.logo-group-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2c3e50;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.78rem;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  margin-top: 4px;
  padding-left: 2px;
}

/* Slogan Typography Rules */
.header-slogan {
  font-size: 0.95rem;  
  font-weight: 600;
  line-height: 1.35;
  color: #7f8c8d;
  border-left: 2px solid #ecf0f1; /* Sharp vertical separator line on desktop */
  padding-left: 20px; 
  text-align: right;
  align-self: center;
}

/* Core Navigation Container - Expanded full width on multi-row setup */
.nav-menu {
  display: flex;
  width: 100%;
  justify-content: center; /* Centers navigation menus perfectly underneath branding */
  border-top: 1px dashed #f2f4f4;
  padding-top: 12px;
}

/* Desktop Navigation Menu List */
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  flex-shrink: 0;     
}

.nav-list > li {
  position: relative;
  margin: 0 16px;     
}

.nav-list > li > a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #34495e;
  padding: 6px 0;
  position: relative;
}

/* Micro-interaction: Animated underline hover accent tracking lines */
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2c3e50;
  transition: width 0.25s ease;
}

.nav-list > li > a:hover::after {
  width: 100%;
}

.arrow {
  font-size: 0.7rem;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.2s ease;
}

/* Desktop Dropdown Submenu Panels */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 0 8px 0; /* FIXED: Added invisible top buffer padding to capture slow hover transitions */
  list-style: none;
  margin-top: 0 !important; /* FIXED: Completely closed the spatial pixel gap so the mouse never leaves the container zone */
  border: 1px solid rgba(0,0,0,0.03);
  z-index: 1010;
}

.dropdown-menu li a {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5d6d7e;
  display: block;
}

/* Micro-interaction: Clean panel hover color slide transitions */
.dropdown-menu li a:hover {
  background-color: #f8f9fa;
  color: #2c3e50;
  padding-left: 24px; 
}

/* Callout Action Button Styling Rules (CTA) */
.nav-list li a.cta-btn {
  background-color: #2c3e50;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 6px rgba(44, 62, 80, 0.15);
}

.nav-list li a.cta-btn:hover {
  background-color: #1a252f;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(44, 62, 80, 0.25);
}

.nav-list li a.cta-btn::after {
  display: none; /* Disables standard slide lines under CTA button block */
}

/* RESPONSIVE LAYOUT BREAKPOINT ENGINE (DESKTOP INTERMEDIATES) */
@media (min-width: 901px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    animation: menuFadeIn 0.2s ease-out forwards;
  }
  .dropdown:hover .arrow {
    transform: rotate(180deg);
  }
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* PREVENTS INTERFERENCE & COLLISION ON LAPTOPS / NARROW DESKTOPS */
@media (min-width: 901px) and (max-width: 1199px) {
  .header-logo-image {
    height: 85px;      /* Increased intermediate size scale */
  }
  .nav-list > li {
    margin: 0 10px;    /* Pulls link columns closer on condensed laptop viewports */
  }
}

/* LARGE DISPLAY MONITOR SCALING ONLY */
@media (min-width: 1200px) {
  .header-logo-image {
    height: 100px;     /* Large desktop optimization constraint */
  }
}

/* ==========================================================================
   3. MOBILE HAMBURGER BUTTON APPARATUS
   ========================================================================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2001;
}

.menu-toggle .bar {
  height: 2.5px;
  width: 100%;
  background-color: #2c3e50;
  border-radius: 4px;
  transition: all 0.25s ease;
}

/* ==========================================================================
   4. BODY AREA CONTAINERS & MAIN HERO PANEL
   ========================================================================== */
.container {
  width: 100%;
  padding: 40px;      
  flex-grow: 1; /* Stretches container height to push footer down cleanly */
}

.hero-section {
  text-align: center;
  margin-bottom: 40px;
  padding: 60px 30px;        
  background-color: #f4f6f7; 
  
  /* Light overlay scrim mask to balance photography with high-contrast text layers */
 background-image: url(../assets/thankyouservice%20related/background.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  color: #2c3e50; 
}

.hero-section h1 {
  font-size: 2.5rem;          
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: #2c3e50;
}

.hero-section p {
  font-size: 1.15rem;
  color: #475a6b;
  max-width: 800px;
  margin: 0 auto 24px auto;
  font-weight: 500;
}

.contact-info-top {
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-info-top a {
  margin: 0 12px;
  color: #2c3e50; 
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px dotted rgba(44, 62, 80, 0.5);
}

.contact-info-top a:hover {
  color: #000000;
  border-bottom: 1px solid #000000;
}

/* ==========================================================================
   5. 50/50 DESKTOP COLUMNS SYSTEM MATRIX
   ========================================================================== */
.main-layout {
  display: flex;
  gap: 32px; 
  align-items: stretch; /* Preserves matching vertical block heights across screens */
  width: 100%;
  clear: both;          
}

.content-left, .sidebar-right {
  flex: 1 1 50%;        /* Locks split grids to uniform matching 50% width footprints */
  min-width: 0;         /* Stops interior images from extending past column boundaries */
}

.content-left img {
  width: 100%;      
  height: auto;      
  display: block;    
  margin-bottom: 16px; 
}

.info-block img {
  width: 100%;      
  height: auto;      
  display: block;    
  margin-bottom: 16px; 
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   6. INNER INFORMATION CONTENT CARDS
   ========================================================================== */
.info-block {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  height: 100%;
  overflow: hidden; 
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.content-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.info-block:hover .content-image {
  transform: scale(1.03);
}

.info-block-text {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.info-block h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2e7d32;            /* Mid-tone timber accent green applied globally */
  margin-bottom: 20px;
  border-bottom: 2px solid #f2f4f4;
  padding-bottom: 12px;
  letter-spacing: -0.3px;
}

.info-block p {
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: #566573;
}

.features-list {
  list-style: none;
}

.features-list li {
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 4px solid #2c3e50;
}

.features-list strong {
  display: block;
  font-size: 1.15rem;
  color: #2c3e50;
  margin-bottom: 6px;
}

.apply-box {
  background-color: #eaeec8; 
  border: 2px dashed #2c3e50;
  padding: 24px;
  text-align: center;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a252f;
  margin-top: 15px; 
}

.apply-box a {
  color: #2c3e50;
  text-decoration: underline;
  font-weight: 800;
  display: inline-block;
  transition: transform 0.2s ease;
}

/* ==========================================================================
   7. FOOTER DIRECTION CHIPS & DIRECTORY HOUSING
   ========================================================================== */
.site-footer {
  width: auto;                
  background-color: #8d6e63;   /* Light warm wood chestnut brown */
  border-top: 4px solid #2e7d32; /* Rich mid-tone accent green top bar */
  color: #ffffff;
  padding: 60px 40px 40px 40px;
  clear: both; 
  margin-top: auto;            
  box-sizing: border-box;
}

.footer-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1160px;
  margin: 0 auto 40px auto;
  gap: 40px;
}

.footer-col {
  width: calc(33.333% - 27px); 
  min-width: 0;
  text-align: left;
}

.footer-col h3 {
  color: #eaeec8;             /* Warm soft gold typography color shift */
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 0.95rem;
  color: #f5f5f5;             
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #eaeec8;
}

/* DUAL MAP DIRECTIONAL PANELS BUTTON COMPONENT */
.map-links-container {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.map-btn, .map-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.map-directions-btn {
  background-color: #2c3e50;
  color: #ffffff;
}
.map-directions-btn:hover {
  background-color: #1a252f;
  transform: translateY(-1px);
}

.apple-maps {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #d2d2d7;
}
.apple-maps:hover {
  background-color: #f5f5f7;
  transform: translateY(-1px);
}

.google-maps {
  background-color: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
  box-shadow: 0 1px 3px rgba(60,64,67,0.1);
}
.google-maps:hover {
  background-color: #f8f9fa;
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #f5f5f5;
}

.footer-tagline {
  margin-top: 8px;
  font-size: 0.85rem;
  font-style: italic;
  color: #eaeec8;
}

/* ==========================================================================
   8. BACK TO TOP UI SYSTEM COMPONENT
   ========================================================================== */
#backToTopBtn {
  display: none;            
  position: fixed;          
  bottom: 30px;             
  right: 30px;              
  z-index: 2999;            /* Keeps it positioned safely over the page footer matrix */
  border: none;             
  outline: none;            
  background-color: #2c3e50; 
  color: white;             
  cursor: pointer;          
  padding: 14px 16px 16px 16px;       
  border-radius: 50%;       
  font-size: 14px;          
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

#backToTopBtn:hover {
  background-color: #1a252f; 
  transform: scale(1.1);     
}

/* ==========================================================================
   9. MOBILE VIEWPORT OVERRIDES (UNDER 900px SCREEN RESPONSIVE RESPONSES)
   ========================================================================== */
@media (max-width: 900px) {
  .page-frame-wrapper {
    box-shadow: none;
  }

  .site-header {
    padding: 16px 20px;
    position: relative; 
    flex-direction: column;    /* Forces everything in header to stack straight down on mobile */
    align-items: flex-start;
    gap: 12px;
  }

  /* FIXED: Resets brand container layout to let logo and slogan sit stacked on mobile */
  .brand-container {
    flex-direction: column !important; 
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .logo-img-wrap {
    margin-bottom: 2px;
  }

  .header-logo-image {
    height: 52px;              
  }

  /* FIXED: Re-pockets slogan directly underneath the logo block safely clear of mobile menu panels */
  .header-slogan {
    border-left: none !important;
    padding-left: 2px !important;
    font-size: 0.85rem !important;
    text-align: left !important;
    margin-top: 2px !important;
    width: 100% !important;
  }

  /* FIXED: Pins the hamburger menu to the top right corner so text elements don't hit it */
  .menu-toggle {
    display: flex !important; 
    position: absolute !important;
    top: 24px !important;
    right: 20px !important;
    z-index: 2001;
  }
  
  .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    padding: 10px 0;
    border-top: 1px solid #f2f4f4;
    z-index: 1999;
  }

  .nav-menu.active {
    display: block !important; 
    background-color: #f4f6f7 !important; 
    border-bottom: 2px solid #e2e7ec !important; 
    animation: mobileMenuDrop 0.25s ease-out forwards;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-list > li {
    margin: 0;
    width: 100%;
  }

  .nav-list > li > a {
    padding: 14px 28px;
    width: 100%;
    display: block;
  }

  .nav-list > li > a::after {
    display: none; 
  }

  .nav-menu .dropdown-menu {
    display: none;
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    background-color: #eaedf0; 
    padding: 0;
    margin-top: 0;
    border-radius: 0;
    border: none;
  }

  .nav-menu .dropdown-menu li a {
    padding: 12px 28px 12px 48px;
    display: block;
    width: 100%;
  }

  .dropdown.open .dropdown-menu {
    display: block !important;
  }

  .dropdown.open .arrow {
    transform: rotate(180deg);
  }

  .nav-list li a.cta-btn {
    width: calc(100% - 56px);
    margin: 12px 28px;
    text-align: center;
    box-shadow: none;
  }

  .container {
    padding: 24px 16px;
  }

  .main-layout {
    flex-direction: column;
    gap: 24px;
  }

  .content-left, .sidebar-right {
    width: 100%;
    flex: none;
  }

  .container .content-image {
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  .site-footer {
    padding: 40px 20px;
  }

  .footer-grid {
    flex-direction: column; 
    align-items: center;
    gap: 32px;
    margin-bottom: 30px;
  }

  .footer-col {
    width: 100%;           
    text-align: center;    
  }
  
  .map-links-container {
    justify-content: center; 
  }
}

/* ==========================================================================
   10. FINE-TUNED RESPONSIVE MOBILE MENU HIGHLIGHT
   ========================================================================== */
@media (max-width: 900px) {
  .nav-menu,
  .nav-menu.active {
    background-color: #f4f6f7 !important;
    border-bottom: 3px solid #dcdfe2 !important;
    border-top: 1px solid #dcdfe2 !important;
  }

  .nav-list,
  .nav-list > li,
  .nav-list > li > a {
    background: transparent !important;
    background-color: transparent !important;
    color: #2c3e50 !important; 
  }
  
  .nav-menu .dropdown-menu,
  .nav-menu .dropdown-menu li,
  .nav-menu .dropdown-menu li a {
    background-color: #e2e6ea !important;
    color: #34495e !important;
  }
  
  .nav-list li a.cta-btn {
    background-color: #2c3e50 !important;
    color: #ffffff !important;
  }
}

/* ==========================================================================
   SECTION 12: BOARD OF DIRECTORS / SINGLE COLUMN FIXED 4-GRID LAYOUT
   ========================================================================== */

/* Safely prevents parent container rules from squeezing our narrow column page layout */
.container {
    max-width: 100% !important;
    padding: 20px 10px !important;
}

/* Forces the layout wrapper to be a single centered channel */
.single-column-container {
    display: block !important;
    width: 100% !important;
    max-width: 800px !important; /* Optimal reading length for single-column text */
    margin: 0 auto !important;   /* Centers the column perfectly on the screen */
    padding: 10px 5px !important;
    box-sizing: border-box !important;
}

/* Responsive Grid Layout - Safely locked to a single line on all desktop computers */
.board-grid {
    display: grid !important;
    /* Forces exactly 4 equal columns side-by-side on desktops and halts layout wrapping drops */
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important; 
    margin-top: 30px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Added a clear dark gray rounded border with inner safety padding */
.board-card {
    display: flex !important;
    flex-direction: column !important;
    background-color: #ffffff !important; /* Forces background recovery over mobile overrides */
    border: 1px solid #7f8c8d !important;  /* Clean dark gray border frame */
    border-radius: 8px !important;         /* Soft rounded corners matching layout */
    padding: 12px !important;              /* Compact interior safety buffer space */
    box-sizing: border-box !important;
    min-width: 0 !important;               /* Prevents text from forcing card overflow */
}

/* Style for the square image placeholder */
.image-placeholder {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important; /* Keeps the placeholder perfectly square */
    background-color: #e2e7ec !important;
    border-radius: 6px !important;  /* Tighter curve inside card padding */
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #7f8c8d !important;
    font-size: 11px !important;     /* Scaled down for 4-column desktop layout */
    font-weight: 500 !important;
    text-align: center !important;
}

.board-card h3 {
  margin: 12px 0 4px 0 !important; /* Added margin top to accommodate the image height calculation */
  font-size: 14px !important;
  color: #2c3e50 !important;
  font-weight: 700 !important;
}

.board-card .title {
    margin: 0 0 10px 0 !important;
    font-size: 11px !important;
    color: #7f8c8d !important;
    font-style: italic !important;
    line-height: 1.2 !important;
}

.board-card .content-area {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
    color: #34495e !important;
}

/* FIXED: Increased weight selector chain to beat Section 9's dual class specification constraint */
.board-card img.content-image,
.board-grid .board-card img.content-image,
.single-column-container .board-card .content-image {
    width: 100% !important;
    height: 150px !important; /* Hardcoded layout binding override value */
    max-height: 150px !important;
    aspect-ratio: 1 / 1 !important; /* Forces a perfect square shape footprint */
    object-fit: cover !important;    /* Crops the image edges cleanly instead of squeezing them */
    border-radius: 6px !important;           
    margin-bottom: 12px !important;
    display: block !important;
}

/* Custom bullet handling rules for text lists inside board descriptions */
.board-card .director_txt {
    list-style-type: none !important; /* Removes standard hanging bullets */
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.board-card .director_txt li {
    margin-bottom: 6px !important;
    font-size: 11.5px !important;
    line-height: 1.4 !important;
    position: relative;
    padding-left: 10px !important;
}

/* Adds a clean custom minimal timber marker dot */
.board-card .director_txt li::before {
    content: "•";
    color: #7f8c8d;
    position: absolute;
    left: 0;
    top: 0;
}

/* Adds clear breathing room between stacked content blocks */
.column-divider {
    border: 0 !important;
    border-top: 1px solid #e2e7ec !important;
    margin: 40px 0 !important;
    width: 100% !important;
}

/* FORCE MOBILE MEDIA QUERY RESET OVERRIDES */
@media screen and (max-width: 900px) {
    /* Collapses the 4 desktop columns down to a single wide clean stack on mobile device viewports */
    .board-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .board-card {
        text-align: center !important;
        padding: 20px !important;
    }

    /* Keeps image square look consistent on mobile stacking screens */
    .board-card img.content-image,
    .single-column-container .board-card .content-image,
    .image-placeholder {
        font-size: 14px !important;
        width: 100% !important;
        max-width: 200px !important; 
        height: 200px !important; /* Expanded framework height calculation for standalone card previews on phone screen displays */
        max-height: 200px !important;
        margin: 0 auto 16px auto !important;
        aspect-ratio: 1 / 1 !important;
    }

    .board-card h3 {
        font-size: 18px !important;
        margin-top: 0 !important;
    }

    .board-card .title {
        font-size: 14px !important;
    }

    .board-card .content-area {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .board-card .director_txt {
        text-align: center !important;
    }
    
    .board-card .director_txt li {
        padding-left: 0 !important;
        font-size: 14px !important;
    }
    
    .board-card .director_txt li::before {
        display: none !important;
    }
}