.ctm-hero-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Image (mobile first) */
.ctm-hero-block-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url('/_flysystem/fedora/2026-04/center%20for%20traditional%20medicine_1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Content */
.ctm-hero-block-content {
  padding: 2rem 1rem;
  color: #000;
  background-color: rgba(86, 105, 55, .4);
}

.ctm-hero-block-title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.ctm-hero-block-subtitle {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #000;
}

.ctm-hero-block-description {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #000;
}

/* Tablet */
@media screen and (min-width: 768px) {
  .ctm-hero-block-content {
    padding: 3rem 1rem;
  }

  .ctm-hero-block-title {
    font-size: 2.25rem;
  }
}

/* Desktop (restore original layout) */
@media screen and (min-width: 1024px) {
  .ctm-hero-block {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-image: url('/_flysystem/fedora/2026-04/center%20for%20traditional%20medicine_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15em;
    box-sizing: border-box;
  }

  /* Hide inline image on desktop */
  .ctm-hero-block-image {
    display: none;
  }

  .ctm-hero-block-content {
    max-width: calc(50% - 5em);
    padding: 3rem 1rem;
    text-align: left;
    color: #fff;
  }

  .ctm-hero-block-title {
    font-size: 2.5rem;
    color: #fff;
  }

  .ctm-hero-block-subtitle {
    font-size: 1.5rem;
    color: #fff;
  }

  .ctm-hero-block-description {
    font-size: 1.25rem;
    color: #fff;
  }
}