@charset "UTF-8";
.posts-grid.archive-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
}
.posts-grid.archive-service .service-item {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
}
.posts-grid.archive-service .service-item > .content {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 16px;
  flex-grow: 1;
}
.posts-grid.archive-service .service-item:nth-of-type(even) .icon {
  color: var(--wp--preset--color--secondary);
  background-color: #FFF5F2;
}
.posts-grid.archive-service .service-item:nth-of-type(even) .tag-link,
.posts-grid.archive-service .service-item:nth-of-type(even) .more-link {
  color: var(--wp--preset--color--secondary);
}
.posts-grid.archive-service .service-item:nth-of-type(odd) .icon {
  color: var(--wp--preset--color--accent);
  background-color: #F2F4FB;
}
.posts-grid.archive-service .service-item:nth-of-type(odd) .tag-link,
.posts-grid.archive-service .service-item:nth-of-type(odd) .more-link {
  color: var(--wp--preset--color--accent);
}
.posts-grid.archive-service .meta {
  margin-bottom: 16px;
}
.posts-grid.archive-service .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.posts-grid.archive-service .icon svg {
  width: 48px;
  height: 48px;
}
.posts-grid.archive-service .icon svg > * {
  stroke-width: 1px !important;
}
.posts-grid.archive-service .tag-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
.posts-grid.archive-service .title {
  margin-bottom: 16px;
}
.posts-grid.archive-service .title a {
  font-family: var(--wp--preset--font-family--lora);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--wp--preset--color--primary);
  text-decoration: none;
}
.posts-grid.archive-service .title a:hover {
  color: var(--wp--preset--color--secondary);
}
.posts-grid.archive-service .excerpt {
  color: #5A6578;
}
.posts-grid.archive-service .footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  margin-bottom: 16px;
  border-top: 1px solid #E2E8F0;
}
.posts-grid.archive-service .reception-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5A6578;
}
.posts-grid.archive-service .reception-duration::before {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 300;
}
.posts-grid.archive-service .price {
  font-size: 24px;
  font-weight: 600;
}
.posts-grid.archive-service .more-link {
  text-decoration: none;
}
@media (max-width: 1024px) {
  .posts-grid.archive-service {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .posts-grid.archive-service {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/*# sourceMappingURL=archive-service.css.map */
