/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Customized GeneratePress child theme
 Author:       Joe Njenga 
 Author URI:   https://njengah.com/developer
 Template:     generatepress
 Version:      0.1
*/
.home .site-content {
  display: block;
}

.introduction {
  border: 15px solid #e0eae2;
  padding: 3.2em;
  box-shadow: 0 2px 8px 0 #00000029;
  margin: 1em auto;
  border-radius: 1px;
  font-family: Proxima Nova, proxima-nova, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Helvetica, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol !important;
  color: #1f3b2c;
  line-height: 1.7;
}

/************************************************************************************
 * NJENQAH Slider Layout One
 */

/* Grid container with two columns */
.njengah-grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

/* Left grid item in the 2-column grid */
.njengah-parent-grid-left {
  position: relative;
  display: flex;
  align-items: stretch;
}

/* Styling for images inside the left grid item */
.njengah-parent-grid-left img {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right grid item in the 2-column grid */
.njengah-parent-grid-right {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

/* Styling for heading (h3) inside the left grid item */
.njengah-parent-grid-left .title h3 {
  font-size: 22px;
  font-family: Proxima Nova, proxima-nova, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Helvetica, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol;
}

/* Individual grid item */
.njengah-grid-item {
  position: relative;
}

/* Styling for images inside the grid item */
.njengah-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Styling for title (h3) inside the grid item */
.njengah-grid-item .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(0, 121, 121, 0.75);
  color: #fff;
  padding: 10px;
  width: 80%;
  font-size: 18px;
}

/* Additional styling for title (h3) inside the left grid item */
.njengah-parent-grid-left .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(0, 121, 121, 0.75);
  color: #fff;
  padding: 10px;
  width: 80%;
  font-size: 18px;
}

/* Styling for heading (h3) inside the right grid item */
.njengah-parent-grid-right .title h3 {
  font-size: 16px;
  font-family: Proxima Nova, proxima-nova, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Helvetica, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol;
}

/* Media query for screen with a maximum width of 768px (for mobile) */
@media screen and (max-width: 768px) {
  .njengah-grid-2-col {
    grid-template-columns: 1fr;
  }

  .njengah-parent-grid-right {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    gap: 1px;
  }
}

/************************************************************************************/
