@charset "utf-8";
/* CSS Variables */
:root {
  --primary-green: #145a32;
  --border-gray: #c8c8c8;
  --font-main: 'Open Sans', Arial, sans-serif;
  --font-heading: 'DM Serif Display', serif;
  --max-width-desktop: 600px;
  --max-width-tablet: 900px;
}
/* Base */
body {
  background-color: #fff;
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
}
/* Layout Containers */
.desktop,
.tablet {
  max-width: 100%;
  background: var(--primary-green);
  margin: 0;
}
main {
  background: var(--primary-green);
  margin: 0 12px;
}
/* Header */
.header-bar {
  background-color: var(--primary-green);
  padding: 8px 0px 0px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo .logo-link {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 15px;
  margin-bottom: 0px;
  padding: 0px;
  text-decoration: none;
}
.header-nav .nav-link {
  padding: 5px 8px;
  color: #fff;
  border: 0.6px solid #fff;
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: 15px;
  text-decoration: none;
}
.htab { 
  color: #FFFFFF; 
  font-size: .7rem;
  font-weight: 700;
  margin: 2px 10px 1px 15px;
}
.t-row { 
  color: #145a32; 
  font-size: .9rem;
  font-weight: 700;
  margin: 0px 0px 3px 0px;
}
/* Main Content Blocks */
.lite-block,
.lite-block-top {
  background-color: #fff;
  border-radius: 2px;
  padding: 0;
  margin: 0 0 2px;
  text-align: left;
  max-width: 100%;
}
.lite-block-top {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.block-image-3,
.block-image-4 {
  display: block;
  background: var(--primary-green);
  max-width: 100%;
  height: auto;
  margin-bottom: 2px;
  border-radius: 5px 5px 0 0;
}
.block-image-4 {
  border-radius: 2px 2px 0 0;
}
.h2-home {
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 5px 10px;
  text-align: left;
}
.lite-paragraph {
  color: #000;
  font-size: 0.97rem;
  margin: 1px 10px 5px;
}
.lite-info-link {
  font-size: 0.7rem;
  font-weight: 700;
  margin: 15px 10px 10px;
  padding: 3px 10px;
  border-radius: 7px;
  border: 0.6px solid var(--primary-green);
  color: var(--primary-green);
  background: #fff;
  display: inline-block;
  text-decoration: none;
}
.white-link:link,
.white-link:visited,
.white-link:hover,
.white-link:active {
  color: #fff !important;
  text-decoration: none;
}
/* ---------- THUMBROW SECTION STYLES (MOBILE ONLY) ---------- */
/* Inner card flex wrapper */
.content-block-thumbrow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 0;
  flex-direction: row;
}
.thumbrow-section {
  background: #fff;
  border-radius: 2px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin: 5px 0px 0px;
  padding: 10px 10px 10px;
  display: flex;
  flex-direction: column;
}
/* Divider: visible on mobile only */
.thumbrow-divider {
  border: none;
  border-top: 0.8px solid var(--border-gray);
  margin: 10px 0px 10px;
}
.thumbrow-divider-top {
  border: none;
  border-top: 0.8px solid var(--border-gray);
  margin: 0px 0px 10px;
}
/* Clickable card layout */
.content-block-thumbrow-link {
  background: #fff;
  padding: 0px 0px;
  margin: 0px 0px 0px 0px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.content-block-thumbrow-link:hover {
  background: #f0f9f0;
}
/* Thumb & Text */
.thumbrow-thumb {
  flex: 0 0 100px;
  max-width: 100px;
  max-height: 100px;
  height: 100px;
}
.thumbrow-thumb img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  margin: 0;
  padding: 0;
}
.thumbrow-content {
  flex: 1;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}
.thumbrow-content h2 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 0.3em;
  padding: 0;
}
.thumbrow-content p {
  font-size: 0.95rem;
  margin: 0;
  padding: 0;
}
/* ✅ Footer */
footer {
  background-color: var(--primary-green);
  color: #fff;
  font-size: 14px;
  padding: 10px;
  text-align: center;
}
/* ---------- TABLET: 2-column grid ---------- */
@media (min-width: 600px) and (max-width: 899px) {
  body {
    background-color: var(--primary-green); /* outer area green */
  }
  .tablet {
    max-width: var(--max-width-tablet);
    margin: auto;
    background: var(--primary-green); /* content area green */
    border-left: 3px solid #c8c8c8;
    border-right: 3px solid #c8c8c8;
  }
}

/* ---------- DESKTOP: 3-column grid ---------- */
@media (min-width: 900px) {
  body {
    background-color: var(--primary-green); /* outer area green */
  }
  .desktop {
    max-width: var(--max-width-desktop);
    margin: auto;
    background: var(--primary-green); /* content area green */
    border-left: 2px solid #bebebe;
    border-right: 2px solid #bebebe;
  }
  main {
    margin: 0 15px;
  }
}
