/**
 * @file
 * Grid Styles
 */
/* ===== GENERAL STYLES ===== */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #666;
}

.wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* .layout-content {
  min-height: 300px;
} */

.with-grass {
  position: relative;
  background-image: url("../../images/bg-green-grass.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: contain;
}

/* .with-lawnmower::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -95px;
  width: 175px;
  height: 175px;
  opacity: 0.7;
  background-image: url("../../images/man-on-tractor-lawn.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
} */

/* ===== TWO COLUMN LAYOUT ===== */
.two-column-content {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 2rem;
}

@media only screen and (max-width: 960px) {
  .two-column-content {
    display: block;
    padding: 1rem;
  }
}

/* Left Column Styles */
.two-column-content .left-column {
  width: 70%;
  padding: 2rem 1rem 1rem 1rem;
  margin: 0 2rem 2rem 0;
  background-color: #ffffff;
}

@media only screen and (max-width: 960px) {
  .two-column-content .left-column {
    width: auto;
    margin: 0 0 2rem 0;
  }
}

.two-column-content .left-column h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 2rem;
}

@media only screen and (max-width: 960px) {
  .two-column-content .left-column h2 {
    margin: 0 0 1rem 0;
  }
}

@media only screen and (max-width: 600px) {
  .two-column-content .left-column h2 {
    font-size: 1.75rem;
    margin: 0 0 0.75rem 0;
    line-height: 1;
  }
}

.two-column-content .left-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 2rem;
}

.two-column-content .left-column hr {
  display: block;
  margin: 1.5rem 0;
}

.two-column-content .left-column iframe,
.two-column-content .left-column video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0 0 1rem 0;
}

/* Right Column Styles */
.two-column-content .right-column {
  width: 30%;
}

@media only screen and (max-width: 960px) {
  .two-column-content .right-column {
    width: 100%;
  }
}

.two-column-content .right-column .block {
  margin: 0 0 1rem 0;
}

/* Right Column Styles | Block Headings */
.two-column-content .right-column .block {
  background-color: #ffffff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.two-column-content .right-column .block > h2 {
  padding: 0.5rem 1rem 1rem 1rem;
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.75rem;
  color: #fff;
  background: #69951c;
  background: linear-gradient(
    180deg,
    rgba(105, 149, 28, 1) 0%,
    rgba(31, 76, 3, 1) 100%
  );
}
