/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: var(--accent-color);
  color: var(--text-menu-color);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.active,
.accordion:hover {
  background-color: var(--theme-color-light);
  color: var(--text-color);
}

.accordion:after {
  content: '\002B';
  /* Unicode character for "plus" sign (+) */
  font-size: 25px;
  color: var(--text-color);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
  /* Unicode character for "minus" sign (-) */
  color: var(--text-color)
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: var(--body-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/* Add a card effect for articles */
.article-title,
.article-title-highlighted {
  background-color: var(--news-block-color);
  padding: 20px;
  margin-top: 20px;
  display: table;
  width: 100%;
  box-sizing: border-box;
  border-top: 10px;
  border-color: var(--theme-color);
  border-top-style: solid;
}

.article-title h1 {
  color: var(--text-color);
  font-size: 2rem;
}

.article-title-highlighted h1 {
  color: var(--theme-color);
  font-size: 2rem;
}

.article {
  background-color: var(--news-block-color);
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: table;
  width: 100%;
  box-sizing: border-box;
  color: var(--text-color);
}

.article h1 {
  margin-top: 25px;
  color: var(--theme-color);
  font-size: 3rem;
}

.article h2 {
  color: var(--text-color);
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.5rem;
}

.article h3 {
  color: var(--theme-color);
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 2rem;
}

.article .text {
  margin-top: 20px;
}

.discrete-link {
  color: var(--text-color);
}

.highlight-link {
  color: var(--theme-color);
  text-decoration: none;
}

.article img {
  max-width: 100%;
  max-height: 100%;
}

.article .profile img {
  width: 100%;
  max-width: 350px;
  object-fit: cover;
  vertical-align: middle;
}

.article .profile-large img {
  width: 100%;
  max-width: 550px;
  object-fit: cover;
  vertical-align: middle;
}

.article .wrapper {
  padding: 15px 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}

.article .intro {
  flex: 1;
}

.article .intro h2 {
  font-size: 2rem;
  padding-bottom: 25px;
}

.article .intro-small {
  flex: 1;
}

.article .intro-small h2 {
  font-size: 1.5rem;
  padding-bottom: 25px;
}


/* image stuff */
.center {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

figcaption {
  font-size: .8rem;
  font-weight: 90;
}

.source {
  font-size: .75rem;
  font-weight: 90;
  color: var(--light-text-color);
}