
/* NEWSLETTER  SYTLES */
.tnp-submit {
  border-radius: 50px !important;
  overflow: hidden; /* ensures corners clip */
}

.tnp-submit:hover {
  background: linear-gradient(135deg, #6a4fc9, #3b4f61);
  transform: translateY(-5%);
  box-shadow: 0 3% 6% rgba(0,0,0,0.25);
}

.tnp-email {
  border-radius: 9999px !important;  /* forces pill shape */
  padding: 0.8em 1em !important;
  border: 1px solid #ccc !important;
  width: 100% !important;
  box-sizing: border-box;
  margin-bottom: 10px !important;
}

/* END NEWSLETTER  SYTLES */


/* DETAILS BLOCK  SYTLES */

.sf-accordion {
  margin: 1em 0 !important;
  padding: 1em !important;
  border: 1px solid #f9f9f9 !important;
  border-radius: 8px !important;
  background: #103645 !important;
  transition: all 1.5s ease !important;
}

.sf-accordion[open] {
  opacity: 0.9;
  color: #f9f9f9 !important;
}

.sf-accordion summary,
.sf-accordion .wp-block-details__summary {
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 1.1em !important;
  color: #f9f9f9 !important;
  list-style: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  position: relative;         /* needed for ::after */
  padding-right: 1.5em;       /* space for icon */
}

.sf-accordion[open] summary,
.sf-accordion[open] .wp-block-details__summary {
  color: #ffffff !important;
}

.sf-accordion summary::after {
  content: "+";
  font-weight: bold;
  position: absolute;
  right: 0.5em;
  color: #f9f9f9;
}
.sf-accordion[open] summary::after {
  content: "−";
  color: #ffffff;
}

/* END DETAILS BLOCK  SYTLES */
