.lua-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.lua-post-item {
  margin: 0;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(50, 50, 50, 0.08);
}

.lua-post-title,
.lua-post-meta,
.lua-post-excerpt {
  margin: 0;
}

.lua-post-title a {
  color: #c4408d;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 64, 141, 0.35);
  font-weight: 600;
}
.lua-post-title a:hover {
  color: #a23774;
  border-bottom-color: rgba(162, 55, 116, 0.4);
}

.lua-post-meta {
  font-size: 0.95rem;
  color: rgba(50, 50, 50, 0.6);
  margin-top: 4px;
}

.lua-post-excerpt {
  color: rgba(50, 50, 50, 0.75);
  line-height: 1.6;
  margin-top: 6px;
}

.lua-post-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lua-post-card {
  border: 1px solid rgba(50, 50, 50, 0.08);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 0, 32, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lua-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15, 0, 32, 0.08);
}

.lua-post-card__media {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(50, 50, 50, 0.04);
  max-height: 160px;
}

.lua-post-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lua-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.85rem;
  color: rgba(50, 50, 50, 0.6);
}

.lua-post-card__category {
  font-weight: 600;
  color: rgba(50, 50, 50, 0.8);
}

.lua-post-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lua-post-card__title a,
.lua-post-card__cta a {
  color: #c4408d;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 64, 141, 0.35);
}

.lua-post-card__title a:hover,
.lua-post-card__cta a:hover {
  color: #a23774;
  border-bottom-color: rgba(162, 55, 116, 0.4);
}

.lua-post-card__excerpt {
  margin: 0;
  color: rgba(50, 50, 50, 0.75);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lua-post-card__cta {
  margin: 0;
  font-weight: 600;
}

.lua-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lua-card-grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lua-card {
  border: 1px solid rgba(50, 50, 50, 0.08);
  border-radius: 20px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 0, 32, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lua-card__title {
  margin: 0;
  font-weight: 600;
  color: #323232;
}

.lua-card__title a,
.lua-card__cta a {
  color: #c4408d;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 64, 141, 0.35);
}
.lua-card__title a:hover,
.lua-card__cta a:hover {
  color: #a23774;
  border-bottom-color: rgba(162, 55, 116, 0.4);
}

.lua-card__excerpt {
  margin: 0;
  color: rgba(50, 50, 50, 0.75);
  line-height: 1.6;
}

.lua-card__cta {
  margin: 0;
  font-weight: 600;
  color: #c4408d;
}

.lua-hub-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lua-hub-card {
  border: 1px solid rgba(50, 50, 50, 0.08);
  border-radius: 22px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 0, 32, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lua-hub-card__title {
  margin: 0;
  font-weight: 600;
}

.lua-hub-card__title a,
.lua-hub-card__cta a {
  color: #c4408d;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 64, 141, 0.35);
}
.lua-hub-card__title a:hover,
.lua-hub-card__cta a:hover {
  color: #a23774;
  border-bottom-color: rgba(162, 55, 116, 0.4);
}

.lua-hub-card__text,
.lua-hub-card__cta {
  margin: 0;
  color: rgba(50, 50, 50, 0.75);
}

.lua-hub-card__cta {
  font-weight: 600;
  color: #c4408d;
}

.lua-catalog-products {
  display: grid;
  gap: 16px;
}

.lua-catalog-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lua-catalog-card {
  border: 1px solid rgba(50, 50, 50, 0.08);
  border-radius: 20px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 0, 32, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lua-catalog-card__media {
  display: block;
}

.lua-catalog-card__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.lua-catalog-card__title {
  margin: 0;
  font-weight: 600;
  color: #323232;
}

.lua-catalog-card__title a,
.lua-catalog-card__cta a {
  color: #c4408d;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 64, 141, 0.35);
}

.lua-catalog-card__title a:hover,
.lua-catalog-card__cta a:hover {
  color: #a23774;
  border-bottom-color: rgba(162, 55, 116, 0.4);
}

.lua-catalog-card__price {
  font-weight: 600;
  color: rgba(50, 50, 50, 0.75);
}

.lua-catalog-card__cta {
  margin: 0;
  font-weight: 600;
  color: #c4408d;
}

.lua-examples-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.lua-examples-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(50, 50, 50, 0.08);
  border-radius: 16px;
  background: #fff;
}

.lua-examples-thumb {
  flex: 0 0 auto;
  display: inline-flex;
}

.lua-examples-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.lua-examples-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lua-examples-title,
.lua-examples-meta {
  margin: 0;
}

.lua-examples-title a {
  color: #c4408d;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 64, 141, 0.35);
  font-weight: 600;
}

.lua-examples-title a:hover {
  color: #a23774;
  border-bottom-color: rgba(162, 55, 116, 0.4);
}

.lua-examples-meta {
  font-size: 0.9rem;
  color: rgba(50, 50, 50, 0.65);
}

@media (max-width: 1024px) {
  .lua-hub-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lua-card-grid--cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lua-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lua-hub-cards,
  .lua-card-grid--cols-3 {
    grid-template-columns: 1fr;
  }

  .lua-catalog-grid {
    grid-template-columns: 1fr;
  }

  .lua-examples-list {
    grid-template-columns: 1fr;
  }

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

  .lua-post-card {
    padding: 14px;
  }
}

@media (min-width: 1025px) {
  .lua-examples-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
