.module-toggle {
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
    margin-left: 5px;
}

.module-preview p {
    display: inline;
}

.module-full-content {
    transition: all 0.3s ease;
}

.module-toggle-back {
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.module-preview,
.module-full-content {
    overflow: hidden;
}

.module-title, .module-title a {
  font-size: 1.5rem;
  color: #00131e;
}

.module-lead-title {
  font-size: 1.8rem;
}
/*
.post-img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border: solid 2px #cccccc;
}
*/

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 10px;
  border: solid 2px #cccccc;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-container-square {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;

}

.video-container-square iframe {
  position: absolute;
  top: -10%; 
  left: -10%; 
  width: 120%; 
  height: 120%; 
  border: none;
}

.news-title {
  margin-left: -15px;
  padding-top: 3rem;
  font-size: 2.3rem;
}

@media screen and (max-width: 768px) {
  .news-title {
    margin-left: 0;
    font-size: 2rem;
  }
}

@media screen and (max-width: 425px) {
  .news-title {
		font-size: 1.9rem;
  }
	}