/* SEO Benefits Widget - Responsive */
.seo-benefits {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem 1%;
}

.seo-benefits-item {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.seo-benefits svg {
  height: 100px;
  width: 100px;
  margin-bottom: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.seo-benefits-headline {
  margin-bottom: 10px;
  color: var(--clr-text-lt, #444);
  font-size: 1.3rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

/* Tablet: 2 Spalten */
@media (max-width: 768px) {
  .seo-benefits {
    gap: 1.5rem 2%;
  }
  
  .seo-benefits-item {
    flex: 0 0 48%;
  }
  
  .seo-benefits svg {
    height: 80px;
    width: 80px;
  }
  
  .seo-benefits-headline {
    font-size: 1.2rem;
  }
}

/* Mobile: 1 Spalte */
@media (max-width: 480px) {
  .seo-benefits {
    gap: 2rem;
    flex-direction: column;
  }
  
  .seo-benefits-item {
    flex: 0 0 100%;
    margin-bottom: 0;
  }
  
  .seo-benefits svg {
    height: 70px;
    width: 70px;
    margin-bottom: 0.75rem;