/* Molecule: Table A */
.m-table-a__title {
  font-size: var(--title-sm);
}

.m-table-a__title {
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    padding-top: 1.875rem;
    padding-bottom: 1.625rem;

    @media (width >=768px) {
      padding-top: 0.8rem;
      padding-bottom: 0.8rem;
    }
}

.m-table-a__text {
    padding-top: 1.875rem;
    padding-bottom: 1.625rem;
    border-top: 1px solid var(--color-grey);

    @media (width <768px) {
        min-height: 105px;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    @media (width >=768px) {
      padding-top: 0.938rem;
      padding-bottom: 0.938rem;
    }
}

/* Organism: Table A */
.o-table-a {
  background-color: var(--color-grey-lighter);
  padding-top: 2.5rem;
  padding-bottom: 1.75rem;

  @media (width >=768px) {
    padding-top: 3rem;
    padding-bottom: 4.75rem;
  }
}

.o-table-a__table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--color-grey);
    border-collapse: collapse;
    margin-top:2rem;
}

.o-table-a__column {
    display: flex;
    flex-direction: column;
}

.o-table-a__items {
    display: flex;
    flex-direction: column;
    margin-bottom: -1px;
    margin-top: -1px;
}

.o-table-a__column1 .m-table-a__title,
.o-table-a__column1 .m-table-a__text {
    border-right: 0;
}

.o-table-a__column2 .m-table-a__title,
.o-table-a__column2 .m-table-a__text {
    border-left: 0;
}

.o-table-a__column1 {
    border-right: 1px solid var(--color-grey);
}

.o-table-a__table-single {
    grid-template-columns: none;

    & .o-table-a__column1 {
      border-right: 0;
  }
}

.o-table-a__column .o-table-a__items .m-table-a__text:last-child {
  border-bottom: 1px solid var(--color-grey);
}

