a.external-link {
  color: var(--primary-color);
  text-decoration: none;
}
a.external-link:hover {
  text-decoration: underline;
}
a.external-link::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  vertical-align: middle;
  background-color: var(--primary-color);
  -webkit-mask-image: url('../images/Icons/external-link.svg');
  mask-image: url('../images/Icons/external-link.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color 0.15s ease;
}

a.external-link:hover::after {

}

#maintenance_mode {
  padding: 20px 0 60px 0;
}

.header-1 .brand-header .icon { height:30px;width:30px}
.header-1 .brand-header .icon i {font-size: 15px}
.header .icon i.icon-flag {
  width: 30px;
  height: 18px;
  margin-left: 1em;
  margin-right: 0.25em;
  position: relative;
  top: 3px;
  left: 0;
}
.header .icon i.icon-flag.icon-flag-us {
  content: url("../images/flags/us.svg");
  margin-right: 8px;
}
.header-1 .brand-header .contact-links a {font-size: 14px;}
.site-footer {
  background-color: #000 !important;
}

.site-footer .fa-brands:hover {
  color: #FF4500;
}

figure.caption {
  width: 100%;
}

figure.caption.align-center figcaption {
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 9 / 16 = 0.5625 */
  margin-bottom: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container > .caption {
  /* Position the caption at the bottom of the container */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  /* Give it a semi-transparent background for readability */
  background-color: rgba(0, 0, 0, 0.7);

  /* Ensure text is white and has some padding */
  color: #fff;
  padding: 10px;

  /* Use your brand's font for consistency */
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;

  /* Center the text and prevent padding from affecting the width */
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .video-container > .caption {
    font-size: 0.8rem;
  }
}

/*
 * Styles for the "Project Files" section of a blog post,
 * updated to match the Drupal DOM structure.
 */
.project-files-wrapper {
  /* Use a subtle background color to make the section stand out */
  background-color: #f5f5f5; /* Light gray */
  border-radius: 8px; /* Rounded corners */
  padding: 20px; /* Add some padding */
  margin-top: 30px; /* Add some top margin */
}

.project-files-header {
  /* Use your brand's font and color for the title */
  font-family: 'Inter', sans-serif;
  color: #000000;
  margin-bottom: 15px;
}

.project-file-item {
  display: flex; /* Use flexbox for a clean layout */
  align-items: center; /* Vertically center the items */
  gap: 20px; /* Add some space between the thumbnail and text */
  margin-bottom: 20px;
}

/* Updated selector to target the image inside the Drupal field wrapper */
.project-file-item .field--name-field-preview-image img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover; /* Ensure the image fills the container */
}

.project-file-item .file-details {
  flex-grow: 1; /* Allow the details to take up the remaining space */
}

.project-file-item .file-details h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* Updated selector to target the description field */
.project-file-item .field--name-field-description {
  font-size: 0.9rem;
  color: var(--text-color-light);
  margin-bottom: 5px;
}

.project-file-item .file-details a.download-link.button {
  /* Style the download link */
  display: inline-block;
  background-color: #FF4500; /* Your brand's fiery orange */
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease; /* Add a hover effect */
}

.project-file-item .download-link.button:hover {
  background-color: #e63900; /* A slightly darker orange on hover */
}

/* WALL OF HONOR SPECIFIC ITEMS */
.wall-of-honor .paragraph.card {
  border-radius: 10px;
  background-color: rgb(245, 245, 245);
}

.wall-of-honor .paragraph.card h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 0.02rem;
  line-height: 25px;
}

.wall-of-honor .paragraph.card .conflict-heading,
.wall-of-honor .paragraph.card .campaign-heading {
  font-size: 13px;
  text-transform: uppercase;
  color: #919191;
}

.wall-of-honor .paragraph.card .field--name-field-conflict-served-sel > .field__item,
.wall-of-honor .paragraph.card .field--name-field-campaigns > .field__item {
  margin-left: 0.5em;
}

/* EU COOKIE COMPLIANCS STYLES */
#sliding-popup {
  height: 135px;
  width: 100%;
  background-color: rgb(245, 245, 245);
}
#sliding-popup > .eu-cookie-compliance-banner {
  margin-top: 22px;
  font-size: 0.9em;
}

#sliding-popup > .eu-cookie-compliance-banner .eu-cookie-compliance-content {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

#sliding-popup > .eu-cookie-compliance-banner .eu-cookie-compliance-content h2 {
  color: var(--secondary-color);
  font-size: 1.35em;
  margin-bottom: 0;
}

#sliding-popup > .eu-cookie-compliance-banner .eu-cookie-compliance-content p {
  color: var(--text-color-light);
  font-size: 0.95em;
}

/* Views overrides */
h2.view-grouping-header {
  background-color: #000;
  color: #FFF;
  padding: 0.5em 0.5em;
  line-height: 2.2rem;
}

.view-grouping-content > h3 {
  color: var(--text-color-light);
  margin-top: 1.5em;
}


/* Views exposed forms overrides. */
form[id^="views-exposed-form-tuw-tools-"] {
  margin-bottom: 2.5em;
}

form[id^="views-exposed-form-tuw-tools-"] .js-form-item {
  margin-right: 1rem;
}

form[id^="views-exposed-form-tuw-tools-"] .js-form-item > label {
  margin-bottom: 0.1rem;
  font-weight: 600;
  color: var(--text-color-light);
}

form[id^="views-exposed-form-tuw-tools-"] .form-actions {
  margin-left: 0.5rem;
}

  /* Styles for the "Included Files" section */
.included-files-list {
  margin-top: 15px;
}

.included-files-list h5 {
  font-size: 1rem;
  color: var(--text-color-light);
  margin-bottom: 5px;
}

/* Updated selectors to target the Drupal field items */
.included-files-list .field--name-field-included-files {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* Allow the items to wrap */
  padding-left: 0; /* Remove the default ul padding */
}

.included-files-list .field__item {
  background-color: #ddd;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.8rem;
  color: #333;
}

#client_style_2.section-130 {
  padding-top: 0;
}

@media (max-width: 575.98px) {
  #client_style_2.section-130 {
    padding-top: 30px;
  }
}
