.inner-page-body-wrapper.page-rs {
  background-color: #fff;
  color: #502c1e;
}
.page-rs .inner-hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.page-rs .inner-hero-section::before {
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.page-rs .inner-hero-section::after,
.page-rs .inner-hero-section .text-overlay {
  display: none;
}
.page-rs .inner-hero-section .inner-hero-content {
  text-align: left;
    display: flex;   
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 16px; 
    align-items: center;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
}
.page-rs .inner-hero-section .text-wrap {
  position: relative;
  display: block;
  padding: 0;
}
.page-rs .resources-section {
  position: relative;
  z-index: 5;
}
.page-rs .resources-container {
  display: flex;
  flex-flow: wrap;
  gap: 24px;
  width: 100%;
}
.page-rs .single-resource-item {
  display: flex;
  flex-flow: column;
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  padding: 32px 38px;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0 5px 16px 0 #080f340f;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.page-rs .single-resource-item:hover {
  border-color: #9f662d;
  transform: translateY(-4px);
}
.page-rs .single-resource-item .external_link {
  display: block;
  text-decoration: none;
}
.page-rs .resource-header {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2ded5;
}
.page-rs .resource-number {
  flex: 0 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.222rem;
  font-weight: 700;
  line-height: 1;
  color: #9f662d;
}
.page-rs .resource-title.text-color-light {
  margin: 0;
  color: #502c1e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.222rem;
  font-weight: 700;
  line-height: 1.25;
}
.page-rs .single-resource-item:hover .resource-title.text-color-light {
  color: #9f662d;
}
.page-rs .resource-content {
  display: flex;
  flex-flow: column;
  flex: 1 1 auto;
}
.page-rs .resource-content .section-content {
  flex: 1 1 auto;
  margin-bottom: 20px;
}
.page-rs .resource-content .section-content p {
  margin: 0;
  color: #502c1e;
  font-weight: 300;
  line-height: 1.5;
}
.page-rs a.resource-link {
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid #9f662d;
  color: #9f662d;
  font-size: 0.778rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.page-rs a.resource-link:hover {
  border-bottom-color: #502c1e;
  color: #502c1e;
}
@media (max-width: 1024px) {
  .page-rs .single-resource-item {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media (max-width: 767px) {
  .page-rs .inner-hero-section {
    height: 320px;
  }
  .page-rs .inner-hero-section .inner-hero-title {
    font-size: 3.2rem;
  }
  .page-rs .single-resource-item {
    flex-basis: 100%;
    max-width: 100%;
    padding: 20px 18px;
    border-width: 1px;
  }
}
