.blogPages__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}
@media (max-width: 1200px) {
  .blogPages__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blogPages__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.blogPages__inner .box {
  background-color: #fff;
  border: 1px solid #f0e9e2;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.blogPages__inner .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--flower);
}
.blogPages__inner .box .images {
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 5px;
}
.blogPages__inner .box .images img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.blogPages__inner .box .images iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
}
.blogPages__inner .box:hover .images img {
  transform: scale(1.04);
}
.blogPages__inner .box .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}
.blogPages__inner .box .text span {
  color: var(--flower);
  font-weight: 500;
  font-size: 14px;
}
.blogPages__inner .box .text h3 {
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  line-height: 1.4;
  min-height: auto;
  color: var(--cinder);
}
.blogPages__inner .box .text .recipe-description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-top: -2px;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blogPages__inner .box .text .recipe-description p {
  margin-bottom: 8px;
}
.blogPages__inner .box .text .recipe-description p:last-child {
  margin-bottom: 0;
}
.blogPages__inner .box .text .recipe-description ul {
  padding-left: 20px;
  margin-bottom: 8px;
}
.blogPages__inner .box .text .recipe-description li {
  margin-bottom: 4px;
}
.blogPages__inner .box .text .recipe-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  width: 100%;
}
.blogPages__inner .box .text a {
  color: var(--cinder);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0px;
  margin-bottom: 0px;
  width: -moz-max-content;
  width: max-content;
  transition: color 0.3s ease;
}
.blogPages__inner .box .text a:hover {
  color: var(--flower);
}
.blogPages__inner .box .text a i {
  width: 25px;
  height: 25px;
  display: grid;
  place-content: center;
  border-radius: 35px;
  background-color: #fff;
  font-size: 14px;
  color: #000;
  border: 1px solid #000;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.blogPages__inner .box .text a:hover i {
  background-color: var(--flower);
  border-color: var(--flower);
  color: #fff;
  transform: translateX(3px);
}
.blogPages__content h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .blogPages__content h2 {
    font-size: 28px;
  }
}
.blogPages__content p {
  font-size: 14px;
  line-height: 25px;
}
.blogPages__content img {
  width: 100%;
  border-radius: 10px;
  margin-top: 30px;
}
