/* DDR home blog cards refresh 2026-06-30 */
.home-blog-section {
  display: block !important;
  padding: 64px 0 56px;
  background: #f6f8f5;
}

.home-blog-section .container {
  max-width: 1120px;
  box-sizing: border-box;
}

.home-blog-section .row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, 430px);
  grid-auto-flow: row;
  grid-auto-rows: 430px;
  gap: 24px;
  align-items: stretch;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home-blog-section .col-sm-4 {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  box-sizing: border-box;
}

.home-blog-section .row > .col-sm-4:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}

.home-blog-section .row > .col-sm-4:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.home-blog-section .row > .col-sm-4:nth-of-type(3) {
  grid-column: 1;
  grid-row: 2;
}

.home-blog-section .row > .col-sm-4:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}

.home-blog-section .row > .col-sm-4:nth-of-type(5) {
  grid-column: 1;
  grid-row: 3;
}

.home-blog-section .row > .col-sm-4:nth-of-type(6) {
  grid-column: 2;
  grid-row: 3;
}

.home-blog-section .blogPost {
  position: relative;
  display: flex !important;
  width: 100%;
  height: 430px;
  margin: 0 !important;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e1e5df;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.home-blog-section .blogPost > img {
  display: block;
  width: 100% !important;
  height: 174px !important;
  min-width: 0;
  max-width: 100% !important;
  object-fit: cover;
  object-position: center;
  background: #e9ece7;
  flex: 0 0 174px;
}

.home-blog-section .date {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-width: 58px;
  padding: 7px 9px;
  border-radius: 4px;
  background: rgba(115, 191, 69, 0.96);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.home-blog-section .date h6 {
  margin: 0;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.home-blog-section .date h6 span {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-blog-section .blogContentIndex {
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: 18px 20px 18px;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

.home-blog-section .blogContentIndex .content {
  min-height: 0;
  padding: 0;
}

.home-blog-section .blogContentIndex h3 {
  min-height: 70px;
  margin: 0 0 10px;
}

.home-blog-section .blogContentIndex h3 a {
  display: block;
  overflow: visible;
  color: #283028;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.28;
  text-decoration: none;
  text-transform: none;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.home-blog-section .blogContentIndex h3 a:hover,
.home-blog-section .blogContentIndex h3 a:focus {
  color: #5ea437;
}

.home-blog-section .blogContentIndex p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #606760;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.home-blog-section .bottomContent {
  margin: 15px 0 0;
  padding: 0;
  background: transparent;
}

.home-blog-section .bottomContent a {
  float: none;
  display: inline-flex;
  min-height: 34px;
  margin: 0;
  padding: 8px 15px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #73bf45;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.home-blog-section .bottomContent a:hover,
.home-blog-section .bottomContent a:focus {
  background: #5ea437;
  color: #fff;
}

.home-blog-section .home-news-more {
  grid-column: 1 / -1;
  margin-top: 8px;
  text-align: center;
}

.home-blog-section .home-news-more-button {
  display: inline-flex;
  min-height: 42px;
  margin: 0 5px 8px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.home-blog-section .home-news-more-button {
  border: 1px solid #73bf45;
  background: #73bf45;
  color: #fff;
  cursor: pointer;
}

.home-blog-section .home-news-more-button:hover,
.home-blog-section .home-news-more-button:focus {
  border-color: #5ea437;
  background: #5ea437;
  color: #fff;
}

.home-blog-section .home-news-more-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 767px) {
  .home-blog-section {
    padding: 34px 0;
  }

  .home-blog-section .container {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-blog-section .row {
    display: block !important;
    grid-template-columns: none;
    grid-template-rows: none;
    grid-auto-rows: auto;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .home-blog-section .col-sm-4 {
    display: block !important;
    width: 100% !important;
    margin-bottom: 16px !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .home-blog-section .blogPost {
    height: auto;
    min-height: 0;
  }

  .home-blog-section .blogPost > img {
    height: 180px !important;
    flex-basis: 180px;
  }

  .home-blog-section .blogContentIndex {
    padding: 18px 18px 17px;
  }

  .home-blog-section .blogContentIndex h3 {
    min-height: 0;
  }

  .home-blog-section .blogContentIndex h3 a {
    font-size: 18px !important;
  }

  .home-blog-section .blogContentIndex p {
    font-size: 14px;
    -webkit-line-clamp: 4;
  }

  .home-blog-section .bottomContent a {
    width: 100%;
  }

  .home-blog-section .home-news-more {
    margin-top: 4px;
  }

  .home-blog-section .home-news-more-button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
