.devices {
  padding: 40px 0;
}

.devices-wrapper {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: 42px 53px 60px;
  overflow: hidden;
}

.devices-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-black);
  font-size: 60px;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 40px;
}

.devices-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.device-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 4px;
}

.device-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.device-name {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.device-description {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .devices-title {
    font-size: 45px;
  }

  .devices-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .devices-wrapper {
    padding: 30px 20px 40px;
  }

  .devices-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .devices-grid {
    gap: 20px;
  }

  .device-card {
    max-width: none;
  }

  .device-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .devices-title {
    font-size: 26px;
  }
}
