:root {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f4f6f8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 32px;
}

header {
  margin-bottom: 32px;
}

h1 {
  margin: 0;
  font-size: 2rem;
}

header p {
  margin: .35rem 0;
  color: #667085;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.menu-tile {
  display: flex;
  align-items: center;
  gap: 20px;

  min-height: 160px;
  padding: 26px;

  background: white;
  border: 1px solid #e4e7ec;
  border-radius: 18px;

  text-decoration: none;
  color: #172033;

  box-shadow: 0 2px 8px rgba(16, 24, 40, .04);

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    border-color .15s ease;
}

.menu-tile:hover {
  transform: translateY(-2px);
  border-color: #cfd5dd;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .09);
}

.menu-icon {
  flex: 0 0 auto;

  width: 76px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f2f4f7;
  border-radius: 18px;
}

.menu-icon svg {
  width: 42px;
  height: 42px;

  fill: none;
  stroke: #172033;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-content {
  min-width: 0;
  flex: 1;
}

.menu-content h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.menu-content p {
  margin: 0;
  color: #667085;
  line-height: 1.5;
}

.menu-arrow {
  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #172033;
  color: white;

  font-size: 1.25rem;
  font-weight: bold;
}

@media(max-width: 720px) {

  .wrap {
    padding: 18px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-tile {
    min-height: 140px;
    padding: 20px;
  }

  .menu-icon {
    width: 62px;
    height: 62px;
  }

  .menu-icon svg {
    width: 34px;
    height: 34px;
  }

  .menu-arrow {
    display: none;
  }
}