.blog-post {
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  padding: 15px;
  position: relative;
}
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-post-list .blog-post {
  border: 2px solid #dddddd;
  margin: 10px 1px;
  width: 236px;
}
.blog-post-list-small {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-post-list-small .blog-post {
  width: 16.66%;
}
.blog-posts-image {
  aspect-ratio: 1.5;
  display: inline-block;
  object-fit: contain;
  padding-bottom: 10px;
  width: 100%;
}
.blog-post-category-title {
  color: #525252;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
.blog-post-title {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.blog-post-list-small .blog-post-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.blog-post-image {
  text-align: center;
}
.blog-post-image-image {
  display: inline-block;
  max-height: 350px;
  object-fit: contain;
  width: 100%;
}
.blog-post-list-small .blog-post-image {
  display: inline-block;
  height: auto;
  width: 100%;
}
.blog-post-description img {
  display: block;
  margin: auto;
  max-width: 100%;
}
.blog-post-description > p:first-child,
.blog-post-description .lead {
  color: #18181b;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 2rem;
}
.blog-post-description p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.blog-post-description strong {
  color: #000;
}
.blog-post-description h2 {
  color: #000;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1.2;
  margin: 2rem 0 1.25rem;
  padding-left: 1.125rem;
  position: relative;
  text-transform: uppercase;
}
.blog-post-description h2::before {
  background-color: var(--color-main, #fdc612);
  content: '';
  height: 2rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.375rem;
}
.blog-post-description h3 {
  color: #000;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 900;
  margin: 2rem 0 1rem;
  text-transform: uppercase;
}
.blog-post-description h4 {
  color: #000;
  font-size: 1rem;
  font-weight: 900;
  margin: 1.5rem 0 0.75rem;
  text-transform: uppercase;
}
.blog-post-description figure {
  margin: 1.5rem 0;
}
.blog-post-description figure img {
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
  height: auto;
  max-height: 240px;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-post-description h2 {
    font-size: 1.875rem;
    margin: 3rem 0 2rem;
    padding-left: 1.5rem;
  }
  .blog-post-description h2::before {
    height: 2.5rem;
    width: 0.5rem;
  }
  .blog-post-description h3 {
    font-size: 1.5rem;
    margin: 3rem 0 1.5rem;
  }
  .blog-post-description h4 {
    font-size: 1.125rem;
    margin: 2rem 0 1rem;
  }
  .blog-post-description figure {
    margin: 2.5rem 0;
  }
  .blog-post-description figure img {
    border-radius: 1rem;
    max-height: 400px;
  }
}
.blog-post-description figcaption {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 0.75rem;
  text-align: center;
  text-transform: uppercase;
}
.blog-post-description ul {
  list-style: none;
  margin: 2rem 0;
  padding-left: 0;
}
.blog-post-description ul li {
  color: #27272a;
  font-weight: 700;
  line-height: 121%;
  margin-bottom: 1rem;
  padding-left: 2.25rem;
  position: relative;
}
.blog-post-description ul li::before {
  background-color: var(--color-main, #fdc612);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='m9 12 2 2 4-4'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  border-radius: 9999px;
  content: '';
  height: 1.5rem;
  left: 0;
  position: absolute;
  top: -1px;
  width: 1.5rem;
}
.blog-post-description .stats-grid,
.blog-post-description table.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 3rem 0;
}
@media (min-width: 768px) {
  .blog-post-description .stats-grid,
  .blog-post-description table.stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .blog-post-list-small .blog-post {
  width: 33.33%;
  }
}
@media (max-width: 480px) {
  .blog-post-list-small .blog-post {
  width: 50%;
  }
}
@media (max-width: 840px) {
  .blog-post-list .blog-post {
  width: calc(33.3% - 4px);
  }
}
@media (max-width: 520px) {
  .blog-post-list .blog-post {
  width: calc(50% - 4px);
  }
}
@media (max-width: 360px) {
  .blog-post-list .blog-post {
  margin: 10px 0;
  width: 100%;
  }
}
@media (max-width: 1023px) {
  .blog-products-slider {
    max-width: calc(100vw - 40px);
  }
}
.blog-post-description h1 u,
.blog-post-description h2 u,
.blog-post-description h3 u,
.blog-post-description h4 u,
.blog-post-description h5 u,
.blog-post-description h6 u {
  text-decoration: none;
}
@media (max-width: 1023.98px) {
  .blog-article-main {
    width: 100%;
  }
}
.blog-table-scroll {
  border: 1px solid #e4e4e7;
  border-radius: 0.75rem;
  margin: 2rem 0;
  max-width: 100%;
  overflow-x: auto;
}
.blog-post-description table:not(.stats) {
  border-collapse: collapse;
  min-width: 30rem;
  width: 100%;
}
.blog-post-description table:not(.stats) th,
.blog-post-description table:not(.stats) td {
  border-bottom: 1px solid #e4e4e7;
  border-right: 1px solid #e4e4e7;
  font-weight: 700;
  padding: 0.875rem 1rem;
  text-align: center;
  vertical-align: middle;
}
.blog-post-description table:not(.stats) th:last-child,
.blog-post-description table:not(.stats) td:last-child {
  border-right: none;
}
.blog-post-description table:not(.stats) tr:last-child td {
  border-bottom: none;
}
.blog-post-description table:not(.stats) thead th,
.blog-post-description table:not(.stats) tr:first-child th {
  background-color: var(--color-main, #fdc612);
  color: #18181b;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-post-description table:not(.stats) tbody td,
.blog-post-description table:not(.stats) tr td {
  color: #27272a;
}
.blog-post-description table:not(.stats) tbody tr:nth-child(even) td {
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .blog-table-scroll {
    margin: 2.5rem 0;
  }
  .blog-post-description table:not(.stats) th,
  .blog-post-description table:not(.stats) td {
    padding: 1.125rem 1.5rem;
  }
  .blog-post-description table:not(.stats) thead th,
  .blog-post-description table:not(.stats) tr:first-child th {
    font-size: 0.875rem;
  }
}
