/*------------------------------------------------------------------
hero_text_under_image.css
Last edited: 3/27/25
[Table of contents]

100. MEDIA QUERIES
    100a. EXTRA SMALL DEVICES (phones 576px and up)
    100b. SMALL DEVICES (tablets, 768px and up)
    100c. MEDIUM DEVICES (desktops, 992px and up)
    100d. LARGE DEVICES (large desktops, 1200px and up)
    100e. EXTRA LARGE DEVICES (large desktops, 1450px and up)

[Notes]

PHP file: inc/banded_content/hero_text_under_image.php

-------------------------------------------------------------------*/
.band-hero.text-under img {
  display: block;
  height: 100%;
  margin: 0 0 30px;
  object-fit: cover;
  object-position: center top;
  position: relative;
  width: 100%;
  z-index: 1;
}
.band-hero.text-under {
  padding-bottom: 25px;
}
.band-hero.text-under .hero-text {
  text-align: left;
}
.band-hero.text-under h1, 
.band-hero.text-under h2 {
  color: var(--theme-color-dark);
  line-height: 1.2;
  margin: 0;
  text-shadow: none;
  text-transform: none;
}


/*------------------------------------------------------------------
100. MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
100a. EXTRA SMALL DEVICES (phones 576px and up)
-------------------------------------------------------------------*/
@media (min-width: 576px) {
}
/*------------------------------------------------------------------
100b. SMALL DEVICES (tablets, 768px and up)
-------------------------------------------------------------------*/
@media (min-width: 768px) {
.band-hero.text-under {
  padding-bottom: 50px;
}
.band-hero.text-under h1,
.band-hero.text-under h2 {
  font-size: 40px;
}
}
/*------------------------------------------------------------------
100c. MEDIUM DEVICES (desktops, 992px and up)
-------------------------------------------------------------------*/
@media (min-width: 992px) {

}
/*------------------------------------------------------------------
100d. LARGE DEVICES (large desktops, 1200px and up)
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
}
/*------------------------------------------------------------------
100e. EXTRA LARGE DEVICES (large desktops, 1450px and up)
-------------------------------------------------------------------*/
@media screen and (min-width: 1450px) {
}
