/* Container */
.featured-action-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px auto;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
} /* Card layout */
.fa-featured-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: stretch;
  background: #ebded4;
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(21, 30, 49, 0.12);
  overflow: hidden;
  border: 1px solid rgba(22, 28, 40, 0.04);
} /* thumb */
.fa-thumb {
  background-size: cover;
  background-position: center;
  min-height: 220px;
  position: relative;
  filter: saturate(1.02);
} /* content block */
.fa-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
} /* top - title / content */
.fa-title {
  margin: 0 0 8px 0;
  font-size: 35px;
  line-height: 1.18;
  font-weight: 700;
}
.fa-title a {
  color: inherit;
  text-decoration: none;
}
.fa-title a:hover {
  text-decoration: underline;
} /* content text: clamp to 2 lines with ellipsis */
.fa-content-text {
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
} /* stats */
.fa-stats {
  margin-bottom: 18px;
}
.fa-amounts {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
}
.fa-amounts .label {
  display: block;
  font-size: 12px;
  color: #455465;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.fa-amounts .value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #0b1220;
} /* progress */ /* color requested: #bb4f35 */
.fa-progress {
  position: relative;
  background: #eef2f6;
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}
.fa-progress-bar {
  height: 100%;
  background-color: #bb4f35; /* new color */
  transition: width 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.fa-progress-text {
  position: absolute;
  right: 14px;
  top: -28px;
  font-size: 13px;
  color: #10203a;
  font-weight: 600;
} /* actions: two buttons */ /* Faire un don: bg #f3a637 text #392112 */
.fa-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.fa-donate {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 30px;
  font-family: "Poppins", Sans-serif;
  font-weight: 400;
  background: #f3a637;
  color: #392112;
  line-height: 1 !important;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(243, 166, 55, 0.18);
  border: none;
}
.fa-donate:hover {
  transform: translateY(-3px);
  transition: transform 0.18s ease;
}
.fa-actions > button {
  padding: 12px 18px !important;
  font-size: 18px !important;
  line-height: 1 !important;
} /* En savoir plus: depends on your plugin's .action-modal-button style But we provide a fallback to match requested inverse colors (bg #392112 text #f3a637) */
.action-modal-button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: #392112; /* fallback */
  color: #f3a637; /* fallback */
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(57, 33, 18, 0.12);
}
.action-modal-button:hover {
  transform: translateY(-2px);
  transition: transform 0.18s ease;
} /* small responsive */
@media (max-width: 900px) {
  .fa-featured-card {
    grid-template-columns: 1fr;
  }
  .fa-thumb {
    min-height: 200px;
  }
  .fa-progress-text {
    top: -22px;
    right: 12px;
  }
  .featured-action-block {
    padding: 0 12px;
  }
  .fa-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .fa-title {
    font-size: 20px !important;
  }
  .fa-content {
    padding: 0 26px 26px 26px;
  }
  .fa-donate {
    font-size: 15px;
  }
}
