:root {
  --font: "Geist", "Geist Placeholder", sans-serif;
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --accent4: #000000;
}



.responsive-showcase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  flex-wrap: wrap;
}

.responsive-text {
  flex: 1 1 150px;
}

.responsive-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.responsive-text p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.device-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.device-list li {
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
}

.responsive-devices {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  background-color: #f1f1f1;
   border-radius: 12px;
   padding: 20px;
}

.responsive-devices img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  object-fit: cover;
}

/* Tablet View */
@media (max-width: 1024px) {
  .responsive-showcase {
    flex-direction: column;
    padding: 40px 30px;
    gap: 30px;
  }

  .responsive-text h2 {
    font-size: 1.8rem;
  }

  .responsive-text p {
    font-size: 1rem;
  }

  .responsive-devices {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .responsive-showcase {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .responsive-text {
    text-align: center;
  }

  .responsive-text h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .responsive-text p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .device-list {
    justify-content: center;
  }

  .responsive-devices {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .responsive-devices img {
    max-width: 280px;
    margin: 0 auto;
  }
}

