.ce-shortcuts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

.ce-shortcuts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #1a1a1a;
  padding: 1rem 2rem;
  flex: 1 1 0;
  min-width: 120px;
  text-align: center;
  transition: opacity 0.2s ease;
}

.ce-shortcuts__item:hover {
  opacity: 0.7;
}

.ce-shortcuts__icon img,
.ce-shortcuts__icon svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ce-shortcuts__item:hover svg path{
  fill: var(--rouge);
}

.ce-shortcuts__label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}

.ce-shortcuts__separator {
  width: 1px;
  height: 60px;
  background: #b0b5b8;
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .ce-shortcuts {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 0.5rem;
  }

  .ce-shortcuts__item {
    flex: 0 0 calc(33.333% - 1rem);
    padding: 0.75rem 0.5rem;
  }

  .ce-shortcuts__separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .ce-shortcuts__item {
    flex: 0 0 calc(50% - 1rem);
  }
}


.shortcuts-title{
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
  font-weight: 900;
  text-align: center;
  margin-top: var(--padding);
}