/* Centers the entire view (grid + buttons + anything else) */
.page-center {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.grid-wrapper {
    flex: 1;
  background: rgba(0, 0, 255, 0.2); /* temporary debug */
}

.grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  gap: 20px;                        /* optional spacing */
  width: 100%;                      /* let the grid expand fully */
  max-width: none;                  /* remove any hidden caps */
}
 
.grid .col {
    border: 2px solid #999;
    padding: 10px;
    border-radius: 6px;
}

.content-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;   /* ← this centers the whole row */
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.content-row > * {
    flex: 0 0 auto;
}

/* Remove bullets + left-align items */
.col ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.col h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
}

.col li {
  margin-bottom: 22px;
}

/* Column colors */
.grid .col:first-of-type {
  background-color: #f0f8ff;
  padding: 20px;
  border-radius: 6px;
}

.grid .col:nth-of-type(2) {
  background-color: #fff4e6;
  padding: 20px;
  border-radius: 6px;
}

.grid .col:nth-of-type(3) {
    background-color: #e6fff3;
}

/* Center the buttons */
.buttons a.btn {
  white-space: normal;
  width: 100%;
  display: block;
}

.content-row {
  max-width: 1100px;
  margin: 0 auto;
}

.content-row {
    gap: 20px;
}

.buttons {
    flex: 0 0 auto;
    width: 180px; /* or whatever you want */
}

.buttons-column {
  background: rgba(0, 255, 0, 0.2);
}

.grid-wrapper {
  background: rgba(0, 0, 255, 0.2);
}
.grid-wrapper {
    background-color: transparent !important;
}