/**
 * @file
 * Visual styles for nodes.
 */

.node--unpublished {
  background-color: #fff4f4;
}


/* 🔹 General Styling */
.about-lbf {
  color: #333;
  background-color: #fff;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* 🔹 Hero Section */
.about-hero {
  text-align: left;
  color: #333;
  padding: 20px;
  border-radius: 10px;
}

.about-title {
  font-size: 26px;
  font-weight: bold;
}

.about-subtitle {
  font-size: 26px;
  text-decoration: underline;
}

/* 🔹 Sections */
.about-section {
  margin-bottom: 30px;
}

.about-heading {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* 🔹 Lists */
.about-list {
  list-style: disc;
}

.about-list li {
  color: #555;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 5px;
}

/* 🔹 Media Section */
.about-media-item {
  margin-bottom: 20px;
  text-align: center;
}

.about-media-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.about-media-item img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.about-media-item img:hover {
  transform: scale(1.05);
}

/* 🔹 Affiliations */
.about-affiliations img {
  display: block;
  margin: 10px auto;
  max-width: 200px;
}

/* 🔹 Support Services */
.about-contact-link {
  color: #ff211a;
  text-decoration: underline;
  font-weight: bold;
}