.page_title {
  padding: 40px 0;
  background: var(--0b3948);
}
@media (max-width: 1199px) {
  .page_title {
    padding: 25px 0;
  }
}
@media (max-width: 599px) {
  .page_title {
    padding: 15px 0;
  }
}
.page_title .section_title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 125%;
  text-align: center;
  color: var(--style);
}
@media (max-width: 1199px) {
  .page_title .section_title {
    font-size: 36px;
  }
}
@media (max-width: 599px) {
  .page_title .section_title {
    font-size: 24px;
  }
}

.post_list {
  padding: 110px 0;
}
@media (max-width: 1199px) {
  .post_list {
    padding: 60px 0;
  }
}
.post_list .wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1199px) {
  .post_list .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .post_list .wrapper {
    padding: 0 30px;
  }
}
.post_list .post {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.post_list .post .thumb {
  width: 100%;
  height: auto;
  max-height: 900px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .post_list .post .thumb {
    max-height: 450px;
  }
}
@media (max-width: 599px) {
  .post_list .post .thumb {
    max-height: 200px;
  }
}
.post_list .post .date {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 123%;
  color: var(--0b3948);
}
.post_list .post .date svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.post_list .post .link {
  margin-top: 24px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 50px;
  line-height: 116%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--0b3948);
}
@media (max-width: 1199px) {
  .post_list .post .link {
    font-size: 38px;
    line-height: 121%;
  }
}
@media (max-width: 599px) {
  .post_list .post .link {
    font-size: 26px;
    line-height: 123%;
    letter-spacing: -0.02em;
  }
}
.post_list .post .excerpt {
  margin-top: 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 188%;
  color: #3E4552;
}
.post_list .post .btn {
  margin-top: 24px;
  min-width: 260px;
  height: 60px;
  border-radius: 8px;
  padding-left: 40px;
  padding-right: 20px;
  background: #ffd470;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--0b3948);
}
@media (max-width: 599px) {
  .post_list .post .btn {
    margin-top: 20px;
    min-width: 190px;
    height: 42px;
    gap: 6px;
    font-size: 14px;
  }
}
.post_list .post .btn:hover {
  background: var(--f9a21b);
}
.post_list .post .btn svg {
  flex-shrink: 0;
  width: 27px;
  height: auto;
}
@media (max-width: 599px) {
  .post_list .post .btn svg {
    width: 20px;
  }
}