.post-page .post-hero {
  min-height: 132px;
}

.post-layout {
  align-items: start;
}

.post-detail {
  min-width: 0;
}

.post-archive-main {
  min-width: 0;
}

.post-breadcrumb {
    margin-bottom: 15px;
}

.post-archive-header {
    margin-bottom: 15px;
}

.post-archive-header h1 {
    margin: 0;
    color: var(--product-dark);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.18;
}

.post-archive-description {
  max-width: 820px;
  margin-top: 12px;
  color: var(--product-muted);
  font-size: 15px;
  line-height: 1.7;
}

.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 720px;
  margin-top: 20px;
  border: 1px solid var(--product-border);
  background: #fff;
}

.search-page-form input[type="search"] {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--product-dark);
  font-size: 15px;
  font-weight: 500;
  outline: none;
}

.search-page-form input[type="search"]::placeholder {
  color: #8f8f94;
}

.search-page-form button {
  position: relative;
  width: 54px;
  min-width: 54px;
  height: 52px;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--product-border);
  background: var(--entho-primary-color);
  color: #fff;
  cursor: pointer;
  transition: background-color 220ms ease;
}

.search-page-form button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.search-page-form button i::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 17px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-page-form button i::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 31px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.search-page-form button:hover {
  background: var(--product-dark);
}

.post-detail-header {
    margin-bottom: 20px;
}

.post-detail-header h1 {
    max-width: 920px;
    margin: 0;
    color: var(--product-dark);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.18;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 10px;
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 500;
}

.post-meta span {
  position: relative;
}

.post-meta span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--entho-primary-color);
  transform: translateY(-50%);
}

.post-featured-image {
  margin: 0 0 34px;
  overflow: hidden;
  background: #f5f5f5;
}

.post-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.post-content {
    color: #55565a;
    font-size: 15px;
    line-height: 1.5;
}

.post-content > *:first-child {
  margin-top: 0;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin: 34px 0 14px;
  color: var(--product-dark);
  font-weight: 700;
  line-height: 1.25;
}

.post-content h2 {
  font-size: 28px;
}

.post-content h3 {
  font-size: 23px;
}

.post-content p,
.post-content ul,
.post-content ol {
  margin: 0 0 18px;
}

.post-content ul,
.post-content ol {
  padding-left: 22px;
}

.post-content li + li {
  margin-top: 8px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 10px 0 22px;
}

.post-content hr {
  height: 1px;
  margin: 34px 0;
  border: 0;
  background: var(--product-border);
}

.post-archive-list {
    display: grid;
    gap: 15px;
}

.post-archive-card {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--product-border);
    background: #fff;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.post-archive-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 38px rgba(26, 25, 29, 0.1);
  transform: translateY(-2px);
}

.post-archive-image {
  display: block;
  min-height: 190px;
  overflow: hidden;
  background: #f5f5f5;
}

.post-archive-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.post-archive-card:hover .post-archive-image img {
  transform: scale(1.04);
}

.post-archive-body {
  min-width: 0;
  padding: 4px 0;
}

.post-archive-body .post-meta {
  margin-top: 0;
}

.post-archive-body h2 {
    margin: 10px 0 0;
    color: var(--product-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.post-archive-body h2 a:hover {
  color: var(--entho-primary-color);
}

.post-archive-body p {
    margin: 12px 0 0;
    color: #55565a;
    font-size: 15px;
    line-height: 1.5;
}

.search-result-card {
  align-items: stretch;
}

.search-result-meta span:first-child {
  color: var(--entho-primary-color);
  font-weight: 700;
}

.search-empty-note {
  margin-top: 0;
}

.post-latest-list {
  display: grid;
  gap: 14px;
}
.post-latest-list {
    margin-bottom: 15px;
}
section.product-side-card.product-contact-card {
    padding-bottom: 15px;
}
.post-latest-item a span {
    font-size: 14px;
}
.post-latest-item a {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--product-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.post-latest-item img {
  width: 74px;
  height: 58px;
  object-fit: cover;
  background: #f5f5f5;
}

.post-latest-item a:hover {
  color: var(--entho-primary-color);
}

.post-related {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--product-border);
}

.post-related-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.post-related-item a {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 90px;
    padding: 10px;
    border: 1px solid var(--product-border);
    color: var(--product-dark);
    font-weight: 700;
    line-height: 1.4;
    transition: border-color 220ms ease, color 220ms ease;
}
.post-related-item a span {
    font-size: 14px;
}
.post-related-item a:hover {
  border-color: var(--entho-primary-color);
  color: var(--entho-primary-color);
}

.post-related-item img {
  width: 92px;
  height: 68px;
  object-fit: cover;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .post-page .post-hero {
    min-height: 72px;
  }

  .post-detail-header {
    margin-bottom: 18px;
  }

  .post-detail-header h1 {
    font-size: 24px;
    line-height: 1.24;
  }

  .post-archive-header h1 {
    font-size: 24px;
    line-height: 1.24;
  }

  .post-archive-header {
    margin-bottom: 14px;
  }

  .post-breadcrumb {
    margin-bottom: 12px;
  }

  .post-meta {
    gap: 8px 16px;
    margin-top: 8px;
  }

  .post-content {
    font-size: 15px;
    line-height: 1.6;
  }

  .post-content h2 {
    font-size: 22px;
  }

  .post-content h3 {
    font-size: 19px;
  }

  .post-related-list {
    grid-template-columns: 1fr;
  }

  .post-archive-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }

  .post-archive-image {
    min-height: 180px;
  }

  .post-archive-body h2 {
    font-size: 20px;
  }

  .post-archive-body p {
    font-size: 14px;
    line-height: 1.55;
  }

  .search-page-form {
    grid-template-columns: minmax(0, 1fr) 48px;
    margin-top: 16px;
  }

  .search-page-form input[type="search"] {
    height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .search-page-form button {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .search-page-form button i::before {
    top: 15px;
    left: 15px;
  }

  .search-page-form button i::after {
    top: 29px;
    left: 29px;
  }

  .post-related {
    margin-top: 38px;
    padding-top: 26px;
  }

  .post-related-item a {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 82px;
  }

  .post-related-item img {
    width: 82px;
    height: 62px;
  }
}
