/* =========================
   LAYOUT - HOME FINAL
========================= */

/* CONTAINER */
.container {
  position: relative;
  width: 100%;
  min-height: 100vh;

  padding: 12px 16px;
  padding-bottom: 80px;

  display: flex;
  flex-direction: column;
  align-items: stretch;

  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

/* WRAPPER */
.icons-wrapper {
  width: 100%;
}

/* GRID (HP: 4 kolom fix) */
.icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px 14px;
  padding: 12px 6px;

  width: 100%;
  box-sizing: border-box;
}

/* ITEM */
.icon-item {
  width: 100%;
  text-align: center;
}

