.wp-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, auto); /* One column per tab */
  column-gap: 20px;
  width: auto;
  padding:0.5em 0;

  /* Target all titles */
  .wp-tab-title {
    grid-row: 1; /* Force all titles to the top row */
    cursor: pointer;
    margin: 0;
    color: #ffffff;
    white-space: nowrap;
    font-size:1.2em;

    &.active {
      color: #ffc718;
    }
  }

  /* Target all content blocks */
  .wp-tab-content {
    grid-row: 2; /* Force all content to the second row */
    grid-column: 1 / span 2; /* Stretch across both columns */
    display: none;
    margin-top: 10px;

    &.active {
      display: block;
    }

    .big-phone {
      font-size:1.7em;
      color: #ffc718;
      display: block;
    }
  }
}