#id_Header1 {
background-color:white;
}

/* Hide the author from homepage blog post display */
#id_ojYzfQ7 .author {
display:none;
}

#id_ojYzfQ7 .date::after {
display: none;
}

/* Hide the blog "posted by" comment (i.e. (Adminstrator)) */
.postedByComment {
display: none;
}

/*Set the profile of the Wild Apricot branding on the homepage */
#idFooterPoweredByWA 
{
font-size:4px; 
color: #cccccc;

}

/* =====================================
   GLOBAL TYPOGRAPHY
===================================== */

body,
.WaGadget,
.WaContentContainer {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;

}

font {
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
}

p {
  margin: 0 0 16px !important;
}

h1 { font-size: 28px !important; margin: 32px 0 16px !important; }
h2 { font-size: 22px !important; margin: 24px 0 12px !important; }
h3 { font-size: 18px !important; margin: 20px 0 10px !important; }


/* =====================================
   TABLE STYLING (class-race-series-table tables)
===================================== */

.class-race-series-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.class-race-series-table th {
  background: linear-gradient(to bottom, #f9f9f9, #e0e0e0);
  border-bottom: 2px solid #ccc;
  padding: 10px;
  text-align: left;
  font-weight: 600;
}

.class-race-series-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/* Zebra striping that works even without <tbody> */
.class-race-series-table tr:nth-child(even) td {
  background-color: #f7f7f7;
}

.half-width {
  width: 50%;
}

.hero-btn {
  display:inline-block;
  padding:14px 28px;
  margin:10px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  font-size:18px;
}

.hero-btn.primary {
  background:#d35400;
  color:white;
}

.hero-btn.secondary {
  background:#2e7d32;
  color:white;
}

.umtr-benefits-section {
  display: flex;
  justify-content: center;
  gap: 30px;       /* spacing between cards */
  flex-wrap: wrap;  /* wrap cards on mobile */
  padding: 60px 20px;
}

/* Container for cards + CTA */
.umtr-benefits-cta-section {
  padding: 30px 20px 30px 20px;
  text-align: center;
}

/* Flex container for cards */
.umtr-benefits-cards {
  display: flex;
  justify-content: center;
  gap: 30px;       /* spacing between cards */
    overflow-x: auto;       /* <-- allow horizontal scroll on small screens */
  -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */

  flex-wrap: nowrap;  /* wrap cards on smaller screens */
  margin-bottom: 40px; /* space between cards and button */
}

/* Card container */
.umtr-benefit-card {
  background-color: white;
  border-radius: 12px;
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  margin: 0 auto;
}

/* Hover lift */
.umtr-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Icon/Image */
.umtr-benefit-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

/* Heading */
.umtr-benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2e7d32; /* brand green */
}

/* Description */
.umtr-benefit-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

/* CTA container */
.umtr-cta {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

/* Button styling */
.umtr-cta-btn {
  display: inline-block;
  background-color: #2e7d32; /* UMTR green */
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.umtr-cta-btn:hover {
  background-color: #1b4f20; /* darker green */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Outer section background */
.umtr-cloud-section {
  padding-top: 0;   /* remove extra space from section top */
  padding-right: 20px;
  padding-bottom: 60px; /* keep bottom space for cards */
  padding-left: 20px;
    border: none !important;
}

/* Content Gadget wrapper */
.umtr-cloud-section .wa-content {
  padding-top: 0 !important;  /* remove gadget-added top padding */
  border: none !important;
}

.umtr-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;               /* space between lines and text */
  margin: 0 auto 30px auto; /* only bottom margin */
}

.umtr-section-title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #2e7d32;
  margin: 0; !important         /* remove default h2 margins */
  white-space: nowrap;
}

.umtr-section-title .line {
  flex: 1;                  /* stretch to fill space */
  height: 2px;              /* thickness of line */
  background-color: #ccc;   /* line color */
}