:root {
  --title_color: #292929;
  --content_color: #9ba182;
  --gap: 20px;
}
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
a,
h3 {
  font-family: "Fira Sans", sans-serif;
}
.head span.subtitle {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--theme_color);
  font-weight: 600;
  font-family: "Fira Sans", sans-serif;
}
.head h1 {
  color: var(--theme_color);
  font-family: "Fira Sans", sans-serif;
}
.head h2 {
  font-size: 3rem;
  line-height: 1;
  color: var(--title_color);
  font-weight: 600;
  font-family: "Fira Sans", sans-serif;
}
.head p {
  color: var(--content_color);
  line-height: 1.5;
}
.head a {
  color: var(--theme_color);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
}
.head .divider {
  width: min(60px, 50%);
  height: 3px;
  background-color: var(--theme_color);
  margin: 10px 0;
}
.gap {
  gap: var(--gap);
}
.btn {
  display: inline-block;
  vertical-align: top;
  border: 3px solid var(--theme_color);
  color: var(--theme_color);
  font-size: 24px;
  line-height: 1;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover {
  color: #fff;
  background-color: var(--theme_color);
}
header {
  height: 110px;
}
.page_banner {
  background: no-repeat center / cover;
}
.page_banner .flex {
  padding: 4rem 0;
  min-height: 406px;
}
.page_banner .head {
  display: grid;
  gap: var(--gap);
  padding-bottom: 2.632%;
}
.page_banner h1 {
  font-size: 3rem;
  line-height: 1;
  font-weight: normal;
}
.page_banner .breadcrumbs {
  padding: 20px;
}
.page_banner .breadcrumbs span {
  color: var(--content_color);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  line-height: 24px;
}
.page_banner .breadcrumbs span a {
  color: var(--content_color);
  font-size: 14px;
  display: block;
  line-height: 24px;
  transition: all 0.3s;
  font-weight: normal;
}
.page_banner .breadcrumbs span a:hover {
  color: #79873e;
}
.page_banner .breadcrumbs span span:last-child a {
  color: #79873e;
}
.blog_list {
  max-width: 1920px;
  margin: 0 auto;
  padding: 5rem clamp(var(--gap), 5.7278%, 118px);
}
.blog_list .posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.posts .post {
  padding: 10px;
}
.posts .post a {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f3f5eb;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.posts .post a:hover img {
  transform: scale(1.03);
}
.posts .post a:hover .info::after {
  opacity: 1;
  width: 100%;
}
.posts .post a:hover .info span {
  text-decoration: underline;
}
.posts .post .img {
  aspect-ratio: 1920/1280;
  overflow: hidden;
}
.posts .post .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: all 0.5s;
}
.posts .post .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 10px;
  position: relative;
}
.posts .post .info::after {
  content: '';
  display: block;
  width: 0;
  height: 6px;
  background-color: var(--theme_color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 1s ease;
  opacity: 0;
}
.posts .post .info .time {
  line-height: 1.5;
  color: var(--content_color);
}
.posts .post .info p {
  flex: 1;
  font-size: 22px;
  color: var(--title_color);
  font-weight: 700;
  line-height: 1.2;
}
.posts .post .info span {
  color: var(--theme_color);
  font-weight: 600;
  line-height: 1.2;
  display: block;
}
nav.navigation {
  margin: 20px 0;
}
nav.navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
nav.navigation .nav-links .page-numbers {
  border: 2px solid transparent;
  text-align: center;
  min-width: 30px;
  line-height: 26px;
  color: var(--theme_color);
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
}
nav.navigation .nav-links .page-numbers.disabled {
  display: none;
}
nav.navigation .nav-links .page-numbers.prev,
nav.navigation .nav-links .page-numbers.next {
  background: url(../img/arrow.svg) no-repeat left 2px center / 1rem;
  height: 30px;
}
nav.navigation .nav-links .page-numbers.prev{
  transform: rotate(180deg);
}
nav.navigation .nav-links .page-numbers.current {
  opacity: 1;
  pointer-events: none;
  border-color: var(--theme_color);
}
nav.navigation .nav-links .page-numbers.dots {
  pointer-events: none;
}
.post_main .head {
  max-width: 1920px;
  margin: 0 auto;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.post_main .head h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: #212529;
  margin-bottom: 8px;
}
.post_main .time {
  width: 85%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  color: #212529;
  line-height: 1.5;
  gap: 5px;
  font-family: "Fira Sans", sans-serif;
}
.post_main .time::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/time.svg) no-repeat center / contain;
}
.post_main .top {
  padding: 10px 0;
  display: flex;
}
.post_main .top .author {
  width: 50%;
  padding: 10px;
  opacity: 0.8;
}
.post_main .top .author p {
  margin-bottom: 1rem;
}
.post_main .top .author strong {
  color: var(--theme_color);
}
.post_main .top .author a {
  font-size: 1rem;
  color: var(--theme_color);
}
.post_main .top .share {
  width: 50%;
  padding: 10px;
}
.post_main .top .share ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
  align-items: flex-start;
}
.post_main .top .share ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: no-repeat center / 50%;
  border-radius: 10%;
  transition: all 0.3s;
  overflow: hidden;
  text-indent: -999px;
}
.post_main .top .share ul li a:hover {
  filter: brightness(1.05);
}
.post_main .top .share ul .facebook a {
  background-image: url(../img/facebook.svg);
  background-color: #3b5998;
}
.post_main .top .share ul .linkedin a {
  background-size: 13px;
  background-image: url(../img/linkedin.svg);
  background-color: #0077b5;
}
.post_main .top .share ul .youtube a {
  background-image: url(../img/youtube.svg);
  background-color: #cd201f;
}
.post_main .desc {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.post_main .desc p {
  width: 50%;
  padding: 10px;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: var(--content_color);
  font-family: "Fira Sans", sans-serif;
}
.post_main .desc .img {
  width: 50%;
  padding: 10px;
}
.post_main .desc .img img {
  width: 100%;
  aspect-ratio: 1920/1280;
  object-fit: cover;
  vertical-align: top;
}
.post_main .table {
  padding: 10px;
}
.post_main .table.active strong::before {
  transform: rotate(-90deg);
}
.post_main .table strong {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  font-size: 1rem;
  line-height: 20px;
  color: var(--theme_color);
  border: 1px solid #d5d8dc;
  cursor: pointer;
  gap: 8px;
}
.post_main .table strong::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../img/arrow.svg) no-repeat right 3px center / contain;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.post_main .table ul {
  padding: 15px 20px;
  border: 1px solid #d5d8dc;
  border-top: none;
  display: none;
}
.post_main .table ul li {
  margin-bottom: 1rem;
}
.post_main .table ul li a {
  font-size: 1rem;
  display: block;
  line-height: 1.5;
  max-width: max-content;
  color: var(--theme_color);
}
.post_main .post_detail {
  font-family: "Fira Sans", sans-serif;
  padding-bottom: 100px;
}
.post_main .post_detail .content {
  padding: 0;
}
.post_main .post_detail h2 {
  font-size: 2rem;
  line-height: 1;
  color: var(--theme_color);
  margin: 20px 0;
}
.post_main .post_detail p {
  line-height: 1.5;
  color: var(--content_color);
  margin: 1rem 0;
}
.post_main .post_detail h3 {
  font-size: 24px;
  line-height: 1;
  color: var(--theme_color);
  margin: 20px 0;
}
.post_main .post_detail a {
  color: var(--theme_color);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}
.post_main .post_detail li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.5;
  color: var(--content_color);
  margin: 8px 0;
}
.post_main .post_detail li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--content_color);
  position: absolute;
  left: 0;
  top: 6px;
}

.post_detail .wp-block-columns{
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}