/* MicroModal styles */
.modal {
    display: none;
}

.modal.is-open {
    display: block;
}

.modal__overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.modal__container {
    background: white;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Floating Get Involved Button */
.get-involved-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #cf4c54;
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1000;
}

.modal-links {
  margin-top: 1rem;
}
.modal-link {
  display: inline-block;
  margin-right: 0.5rem;
  background: #9c5e2b;
  color: #fff;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.modal-link:hover {
  background: #a85620;
}