 @charset "UTF-8";
.custom-css-target .button-container {
  display: flex !important;
  justify-content: center;
  align-items: center;
  /* vertically centers buttons */
  word-break: break-word;
  /* Break long links/words if needed */
  text-align: center;
  /* Center the text (already present) */
  gap: 5px;
  flex-wrap: normal;
  /* Allow multiline text */
  margin: 10px 0; }

.custom-css-target .button {
  background-color: #eaeaea;
  color: #500000;
  padding: 10px 10px;
  line-height: 1.1;
  /* Tighten line spacing */
  border: solid 2px #3c001c;
  border-radius: 2px;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.5s ease, transform 0.6s ease;
  flex: 0 1 auto !important;
  /* ensures buttons don’t force breaks */
  min-width: 90px;
  /* prevents buttons from shrinking too much */
  white-space: normal;
  margin: 0 !important;
  /* Remove excess vertical margins */
  text-align: center;
  max-width: 350px; }

.custom-css-target .button span,
.custom-css-target .button strong {
  margin: 0;
  padding: 0; }

.custom-css-target .button:hover {
  color: #732f2f;
  background-color: #EAEAEA;
  transform: scale(1.025); }

@media (max-width: 700px) {
  .custom-css-target .button-container {
    flex-direction: column !important;
    align-items: center !important; }
  .custom-css-target .button {
    margin-bottom: 10px;
    width: auto;
    white-space: normal; } }

.custom-css-target .section-divider {
  border-top: 2px solid #500000;
  margin: 32px 0; }
