.content {
  margin: 0 10rem;
  /* background-color: lightblue; */
}

@media (max-width: 1199.98px) {
  .content {
    margin: 0 6rem;
  }
}

@media (max-width: 768px) {
  .content {
    margin: 0 2rem;
  }
}

/* Text styling */
.breadcrumbs {
  font-size: 0.875rem;
  margin-top: 3rem;
}

h1 {
  font-size: 2rem;
}

h1 > span {
  font-weight: 600;
}

h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}

p {
  line-height: 1.25rem;
}

.caption-container {
  width: 100%;
}

.caption {
  font-size: 0.875rem;
  font-style: italic;
  text-align: center;
}

/* Spacing */
.col-2 {
  gap: 2rem;
}

/* buttons */
.btn-link {
  display: inline-block;
  padding: 1rem;
  border: solid #e6e6e6 1px;
}

.btn-link:hover {
  border: solid #5b616b 1px;
}

.btn-previous,
.btn-next {
  background-color: white;
  width: 100%;
}

.btn-next {
  text-align: right;
}

/* Cards styling */
.card-s {
  /* padding: 1.5rem; */
  border: solid #e6e6e6 1.5px;
  border-radius: 16px;
}

.card-s-link {
  width: inherit;
}

.card-s-img {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.card-s-text {
  display: flex;
  flex-direction: column;

  padding: 1.5rem;
}

.card-s-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.card-s-desc {
  line-height: 1.25rem;
}

/* Callout styling */
.callout {
  padding: 1rem 3rem;

  border-left: solid 2px #0b3d91;
}

.callout-text {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.75rem;
}

.callout-text > span {
  font-weight: 600;
}

/* Dropdown Styling */
.dropdowns {
  padding: 2rem 3rem;
  border: solid 1px #e6e6e6;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .dropdowns {
    padding: 1rem 1.5rem;
  }
}

.dropdown-container {
  /* border-top: solid 1px #5B616B; */
  /* border-bottom: solid 1px #5B616B; */
  overflow: hidden;

  background-color: white;
}

.dropdown-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  /* border-bottom: solid 1px #5B616B; */

  padding: 1rem 0;
  cursor: pointer;
  align-items: flex-start;
}

.dropdown-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;

  padding: 0 1.5rem;

  transition: all 0.5s ease;
}

/* List Styling */
.list {
  list-style: disc outside;
}

.dropdown-icon {
  transition: transform 0.3s;
}

.dropdown-icon.expanded {
  transform: rotate(180deg);
}

.list-item {
  line-height: 1.25rem;
}

.indent-1 {
  padding-left: 2rem;
}

/* Table Styling */
table {
  width: 100%;
}

tr, th, td {
  padding: 1rem 2rem;
}

@media (max-width: 768px) {
  tr, th, td {
    padding: 0.75rem 1rem;
  }
  td:first-child, th:first-child {
    padding-left: 0;
  }
  td:last-child, th:last-child {
    padding-right: 0;
  }
}

thead {
  border-bottom: solid 1px #E6E6E6;
}

th {
  font-weight: 500;
  text-align: left;
}

td {
  line-height: 1.25rem;
}

/* Blockquote styline */
.blockquote {
  font-size: 1.5rem;
  line-height: 1.75rem;

  padding: 2rem;
}

.blockquote > span {
  font-weight: 600;
}