/*!
 * Created By Michael Wright
 * Date 9/9/2025
 * This is CSS intended for the shacharit service page
 */

/* ----------------------- */
/* Mobile default (<768px) */
/* ----------------------- */

img.banner {
  width: 100%;
  height: 5%;
  object-fit: cover;
  object-position: 100% 70%;
  border-radius: 0px;
}

#half-left {
	display: none;
}

#half-right {
  display: none;
}

#mobileImg {
  display: flex;
  clip-path: circle(50% at center);
  width: 100%;
  height: auto;
}

.center80 {
  margin-bottom: 10rem;
}


/* ---------------------- */
/*    Desktop (≥1200px)   */
/* ---------------------- */

@media (min-width: 1200px) {
  .two-column-layout {
  	display: flex;
  	justify-content: center;
    margin: auto;
  }

  .left-column  { flex: 0 0 45%; }
  .right-column  { flex: 0 0 45%; }

  img.praying {
  	width: 60%;
  }

  #half-left {
    display: flex;
    clip-path: circle(50% at right);
    width: auto;
    height: 10rem;
  }

  #half-right {
  	display: flex;
  	clip-path: circle(50% at left);
  	width: auto;
    height: 10rem;
  }

  #mobileImg {
    display: none;
  }

  .image-sandwich {
    display: flex;
    width: 80%;
    margin: auto;
    align-items: center;
    justify-content: center;
    gap: .1rem;
    text-align: center;
    flex-direction: row;
  }
}