.accordionBlock {
  margin: 0px 10px;
}

.dateHeader h2 {
  color: #3d3f40;
  font-size: 32px;
  margin-bottom: 8px;
  text-align: center;
  font-weight: 800;
}

.advisorTip {
  text-align: center;
  margin-top: 2rem;
}

.additionalInfo {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(100%, 70ch);
  margin: 10px auto;
  background-color: #e4e4e4;
  padding: 10px;
  border-radius: 5px;
}

.additionalInfo a {
  text-decoration: underline !important;
}

.additionalInfo h5 {
  font-size: 16px !important;
  font-weight: 600 !important;
}

.additionalInfoText {
  margin: auto;
}

.advisorTip h3,
.additionalInfo h3 {
  color: #d47200;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-align: center;
}

[role="tabpanel"] {
  min-height: unset;
}

[role="tablist"] {
  min-width: unset;
}
.accordion2 {
  background-color: #fefffa;
  width: min(100%, 70ch);
  margin: 0 auto;
  line-height: 1.6;
}
.accordions {
  margin: 50px auto;
}

.accordion__title2 {
  display: block !important;
  font-weight: 800 !important;
  padding: 16px !important;
  font-size: 22px;
  background: linear-gradient(180deg, #01aeef 0%, #0195cc 100%);
  position: relative !important;
  color: #fff;
  margin-bottom: 8px;
}

.accordianDeadlinePassed {
  background: #808080 !important;
}

.accordion__title2 {
  padding: 0.33em 1ch 0.4em !important;
}

.accordion__title2 h5 {
  display: inline-block;
}

.accordion__title2:focus {
  cursor: pointer;
  outline: none;
}

.accordion__title2:focus h5 {
  border-bottom-color: #a8bdc4;
  display: inline-block;
}

.accordion__content-inner2 {
  display: grid;
  grid-template-columns: repeat(4, auto);
}

.accordion__content2 {
  transition: height 0.3s ease-out;
  overflow: hidden;
}

.datePriceDetail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detailHeadline {
  color: #3d3f40;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}

span.advisorTipText,
.additionalInfoText {
  display: inline-block;
  max-width: 64ch;
  margin: 0.6em 0 1.4em;
}

.additionalInfoText {
  margin: 0.6em 0 0;
}

/* Styles for the accordion */

.accordion__title2 {
  cursor: pointer;
  padding: 10px;
  border: none;
  font-weight: bold;
}

.accordion__content2 {
  padding: 10px;
  display: none;
}

/* Focus styles for keyboard navigation */
.accordion__title2:focus,
.accordion__title2:hover {
  outline: 2px solid #007bff; /* Change the color to your preference */
  background: linear-gradient(180deg, #01aeef 0%, #0195cc 100%);
  margin: 4px 0 8px;
}

/* Styles for open and selected items
.accordion__title2[aria-expanded="true"] {
  background-color: #007bff; /* Change the color to your preference
  color: #fff; /* Change the text color to your preference
} */

.accordion__title2[aria-expanded="true"] + .accordion__content2 {
  display: block;
}

.accordianHeader {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 550px) {
  .accordion__content-inner2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}