.elementor-678 .elementor-element.elementor-element-741b60ef{--display:flex;}/* Start custom CSS */.blog-archive-decorapiso {
  max-width: 1120px;
  margin: 0 auto 4rem;
  padding: 2.8rem 1.5rem 3.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--blog-text);
}

.blog-archive-header {
  max-width: 720px;
  margin: 0 auto 2.6rem;
  text-align: left;
}

.blog-archive-header h1 {
  font-size: 2rem;
  margin: 0 0 0.8rem;
  color: var(--blog-accent);
  letter-spacing: 0.03em;
}

.blog-archive-header p {
  margin: 0;
  color: var(--blog-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.blog-card {
  border-radius: 16px;
  border: 1px solid var(--blog-border);
  overflow: hidden;
  background: #121214;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-card figure {
  margin: 0;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 220px;
}

.blog-card-body {
  padding: 1.1rem 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.blog-card-category {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blog-muted);
}

.blog-card h2 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--blog-accent);
}

.blog-card-excerpt {
  margin: 0.1rem 0 0.3rem;
  color: var(--blog-muted);
  font-size: 0.99rem;
  line-height: 1.6;
}

.blog-card-link {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blog-link);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  border-color: #ffffff30;
}

.blog-card:hover .blog-card-link {
  color: var(--blog-accent);
}

@media (min-width: 768px) {
  .blog-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card img {
    max-height: 210px;
  }
}

@media (min-width: 1100px) {
  .blog-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}/* End custom CSS */