.posts__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.posts__container .loader_holder {
  width: 100%;
}

.post_item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #a7ccee;
  border-radius: 4px;
  padding: 32px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.post_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  bottom: 32px;
  width: 3px;
  background: #eb7a1b;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.2s;
}
.post_item:active {
  box-shadow: 0 4px 20px rgba(4, 8, 58, 0.08);
}
.post_item:active::before {
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .post_item:hover {
    box-shadow: 0 4px 20px rgba(4, 8, 58, 0.08);
  }
  .post_item:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .post_item {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 16px;
  }
  .post_item::before {
    top: 20px;
    bottom: 20px;
  }
}

.post_item__thumb-link {
  flex-shrink: 0;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .post_item__thumb-link {
    width: 100%;
  }
}

.post_item__thumb {
  position: relative;
  width: 252px;
  height: 196px;
  overflow: hidden;
  background-color: #fafcfe;
  border-radius: 4px;
}
.post_item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.post_item:hover .post_item__thumb img {
  transform: scale(1.04);
}
.post_item__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 58, 0.15);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.post_item:hover .post_item__thumb::after {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .post_item__thumb {
    width: 100%;
    height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .post_item__thumb {
    height: 160px;
  }
}

.post_item__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7ccee;
  background-color: #fafcfe;
}

.post_item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .post_item__body {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

.post_item__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.post_item__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.post_item__title {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.125;
  color: #04083a;
  margin: 0;
  letter-spacing: -0.48px;
}
.post_item__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.post_item__title a:active {
  color: #eb7a1b;
}
@media screen and (min-width: 1025px) {
  .post_item__title a:hover {
    color: #eb7a1b;
  }
}
@media screen and (max-width: 768px) {
  .post_item__title {
    font-size: 18px;
  }
}

.post_item__excerpt {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: rgba(4, 8, 58, 0.52);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .post_item__excerpt {
    font-size: 15px;
  }
}

.post_item__meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.post_item__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #7a7d98;
  text-transform: uppercase;
  white-space: nowrap;
}
.post_item__meta-item svg {
  flex-shrink: 0;
  color: #eb7a1b;
}
.post_item__meta-item--location {
  text-transform: none;
  gap: 12px;
}

.post_item__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 16px 24px 16px 20px;
  background: rgba(235, 122, 27, 0.08);
  border: 1px solid rgba(235, 122, 27, 0.32);
  border-radius: 4px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #eb7a1b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.post_item__more:active {
  background: #eb7a1b;
  border-color: #eb7a1b;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .post_item__more:hover {
    background: #eb7a1b;
    border-color: #eb7a1b;
    color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .post_item__more {
    width: 100%;
    justify-content: center;
  }
}
