/* Стиль отображения разделов на главной странице (Услуги, Члены) */
.catalog-index {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* выравнивание по центру */
  padding: 20px 0;
}

.catalog-section {
  width: 260px;
  border: 1px solid #ddd;
  padding: 12px 12px 16px;
  border-radius: 8px;
  background-color: #f8f8f8;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  cursor: pointer;
}

.catalog-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.catalog-section a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.catalog-section img {
  max-height: 90px;
  margin-bottom: 10px;
}

.section-title {
  font-weight: bold;
  font-size: 1.1em;
  margin: 5px 0;
  color: #1A377F;
}

.section-description {
  font-size: 0.9em;
  color: #555;
  margin: 0;
  line-height: 1.4em;
}

.catalog-section::after {
  content: "›";
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 1.5em;
  color: #1A377F;
  opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .catalog-section {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .catalog-index {
    justify-content: center;
  }

  .catalog-section {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }

  .catalog-section::after {
    bottom: 15px;
    right: 15px;
  }
}
