html {
    background: #484848;
}

.regular-page-builder ul{
margin-left: 1em;
max-width:75ch;
}

.regular-page-builder ul li{
    padding:.2em;
}

.column{}

.one-column-section {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 500px;
}

.one-column-section .column {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.one-column-section .component-wrapper {
    margin-top: auto;
    align-self: flex-start;
    max-width: 600px;
    width: 100%;
}

.two-column-section .columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.two-column-section .grid-column {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;   /* vertical – bottom */
    align-items: flex-start;     /* horizontal – left */
}

.two-column-hero .columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 50vh;
    height: 100%;
}

.two-column-hero .grid-column {
    padding:20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.two-column-hero .component-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 500px;

}

.two-column-hero .component-wrapper .btn {
  align-self: flex-start;
}

.card-section {
  padding: 0;
}

.card-section .column {
  padding: 100px 20px;
}

.card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 450px));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.card {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-row: span 6;
  width: 100%;
  max-width: 450px;
  padding: 1.5rem;
  border-radius: .5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  align-items: start;
}

.card__item:first-child {
  overflow: hidden;
  min-height:minmax(100px, fit-content);
  display: flex;
  align-items: flex-start;
}

/* .card__item:first-child :is(h1, h2, h3, p, span) {
  font-size: clamp(1rem, 2.5vw, 2rem);
  line-height: 1.1;
  margin: 0;
} */

.card__item--expandingDetails {
  align-self: start;
  display: block;
}

.card__item--expandingDetails .expanding-details {
  margin-top: 0;
  align-self: start;
}

.card__item--expandingDetails .expanding-item {
  margin-top: 0;
}
.centered-one-column-section {
    display: grid;
    grid-template-columns: 1fr;
}

.centered-one-column-section .column {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centered-one-column-section .column .component-wrapper {
    width: 100%;
    max-width: 1000px;
}

.disclaimer{
    color: #fff9;
    text-align: left;
    font-size: 14px;
    line-height: 145%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .two-column-section .columns-wrapper{
        grid-template-columns: 1fr !important;
    }
    .two-column-hero .columns-wrapper {
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr 1fr !important;
    }
}

#table-switcher .buttons {
  margin-bottom: 1rem;
}
.switcher-btn {
  background: #e31837;
  color: white;
  border: none;
  padding: .5rem 1rem;
  margin-right: .5rem;
  cursor: pointer;
  font-weight: bold;
}
.switcher-btn.active { opacity: .8; }
.switcher-table { display: none; }
.switcher-table.active { display: block; }

/* Cards component
   Allows cards to work inside any section/column type.
*/



.cards.card-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.cards.card-wrapper > .card {
  flex: 1 1 280px;
  max-width: 450px;
  min-width: 0;
  padding: 1.5rem;
  border-radius: .5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.cards.card-wrapper {
  width: 100%;
  max-width: none;
}