.eca-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem;
}

.eca-page-header {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  padding: 2.5rem 0;
}

.eca-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.15rem;
}

.eca-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.eca-header-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eca-titles h1 {
  margin: 0.25rem 0 0.75rem 0;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3rem);
}

.eca-subtitle {
  color: #374151;
  margin: 0;
  line-height: 1.7;
}

.eca-actions {
  text-align: right;
}

.eca-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e63939;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.eca-btn-primary:hover {
  background: #c71f1f;
}

.eca-section {
  padding: 2rem 0;
}

.eca-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.eca-card {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.eca-thumb {
  background: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.eca-thumb img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.eca-card-content {
  padding: 1rem 1.25rem 1.25rem;
}

.eca-card-content h3 {
  margin: 0 0 0.5rem 0;
  color: #0f172a;
  font-size: 1.25rem;
}

.eca-card-content p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

.eca-card-actions {
  margin-top: 0.75rem;
}

.eca-btn-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.eca-btn-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .eca-header-content {
    grid-template-columns: 1fr;
  }

  .eca-actions {
    text-align: left;
  }
}


