.block h2 {
  font-size: 30pt;
}

.block img,
.block video,
.block iframe {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.block video,
.block iframe {
  height: 400px;
}

/* CTA */
.cta-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 1px solid #da291c;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  gap: 10px;
  transition: 0.3s;

  margin-bottom: 20px;
  margin-top: 20px;
}

.cta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Base Button Styles */
.button-block {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;

  width: 100%;
  padding: 10px;
  text-decoration: none;
  transition: 0.3s;

  text-transform: uppercase;
}

/* Default Style*/
.button-block {
  border: 1px solid #da291c;
  background-color: rgba(218, 41, 28, 0.7);
  color: white;
}
.button-block:hover {
  background-color: rgba(218, 41, 28, 0.5);
  color: white;
}

/* Red Style (Brand Color) */
.btn-red {
  border: 1px solid #da291c;
  background-color: #da291c !important; /* Your brand color */
  color: white !important;
}
.btn-red:hover {
  background-color: rgba(218, 41, 28, 0.7) !important;
  color: white;
}



.cta-text h3,
.button-block h3 {
  margin: 0; /* 👈 removes default spacing */
  line-height: 1.2;

  transition: 1s;
}

.cta-arrow {
  font-size: 20px;
  margin-top: 4px;
}

.cta-block:hover {
  background-color: rgba(218, 41, 28, 0.2);
}

.cta-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;

  display: flex; /* 👈 important */
  align-items: center; /* 👈 vertical center */
  justify-content: center; /* 👈 horizontal center */
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PRODUCT ITEMS */

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.product-item {
  padding: 15px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin: 0px;
  border: 1px solid #da291c;
}

.product-item h3 {
  font-size: 14pt;
  font-style: normal;
  margin-bottom: 0px;
}

.product-h3 {
  font-size: 14pt;
  margin-bottom: 0px;
}

/* FAQ */

.faq-block {
  width: 100%;
  margin-bottom: 20px;
}

.faq-title {
  margin-bottom: 0px;
  font-size: 16pt;
}

.faq-item {
  border-bottom: 1px solid #dadada;
  margin-top: 10px;
}

.faq-block hr {
  border: none;
  border-top: 1px solid #dadada;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 0;
  font-size: 14pt;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ANSWER (animated) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.2s ease;
  color: black;
  margin-bottom: 10px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  opacity: 1;
}

/* ICON */
.faq-icon {
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.block-text-image img,
.itemGrid img {
  border: 1px solid #da291c;
}

/* ==========================================================================
   Block: Text & Image
   Two-column layout — 60% text / 1fr image
   ========================================================================== */

.block-text-image {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 20px;
  align-items: start;
  width: 100%;
}

/* ── Text column ──────────────────────────────────────────────────── */

.block-text-image__text {
  min-width: 0; /* prevent grid blowout */
}

.block-text-image__text p:last-child {
  margin-bottom: 0;
}

.block-text-image__text blockquote {
  margin-left: 0;
  padding-left: 1.25em;
  border-left: 3px solid currentColor;
  opacity: 0.75;
}

/* ── Image column ─────────────────────────────────────────────────── */

.block-text-image__media {
  min-width: 0; /* prevent grid blowout */
  margin: 0px;
  padding: 0px;
}

.block-text-image__media img {
  display: block;
  width: 100%;
  max-width: fit-content;
  height: auto;
}

/* ITEM INFO */

.itemGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin: 20px auto;
  border: 1px solid #da291c;
  padding: 20px;
  background-color: rgba(218, 41, 28, 0.1);
  text-align: center;
}

.gridItem {
  max-width: 310px;
}

/* Cap at 4 columns */
@media (min-width: 900px) {
  .itemGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.itemGrid p ul {
  list-style-type: disc;
  padding-left: 0px;
}

.itemGrid h1 {
  margin-top: 8px;
  margin-bottom: 0px;
  font-size: 25pt;
}

.gridItem img {
  height: 200px;
  width: 200px;

  object-fit: cover;

  display: block;
  margin: 0 auto;
  border-radius: 100%;
  border: 1px solid #da291c;
}

/* ── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .block-text-image {
    grid-template-columns: 1fr;
  }

  /* Optionally stack image below text on mobile */
  .block-text-image__media {
    order: 2;
  }

  .block-text-image__text {
    order: 1;
  }

  /* Updated styles for .itemImages */
  .gridItem img {
    width: 300px; /* Fixed width */
    height: 300px; /* Auto height to maintain aspect ratio */
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
  }
}
