.donations-title {
  color: #0E2E69;
  margin: 32px 0;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.5px;
}

.text_content {
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.6;
  color: #1a1c1e;
  padding: 0 16px;
}

.text_content p {
  margin-bottom: 16px;
  font-size: 16px;
}

.text_content h2 {
  color: #0E2E69;
  margin: 28px 0 16px;
  font-weight: 400;
}

.donationsContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 16px;
  margin: 32px 0;
  background-color: #f8f9fa;
  border-radius: 12px;
}

.donation-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  padding: 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 300px;
  border-top: 4px solid #0E2E69;
}

.donation-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.donation-name {
  font-weight: 600;
  font-size: 18px;
  color: #0E2E69;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e1e2ec;
}

.donation-dedication {
  font-style: italic;
  color: #555f71;
  line-height: 1.5;
  font-size: 16px;
  position: relative;
  padding-left: 16px;
}

.donation-dedication:before {
  content: open-quote;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: #0E2E69;
  line-height: 1;
}

.divPagination {
  margin: 32px 0;
  text-align: center;
}

.divPaginationContentFloat ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.divPaginationContentFloat li {
  margin: 0;
}

.divPaginationContentFloat li a,
.divPaginationContentFloat li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: #ffffff;
  color: #1a1c1e;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.divPaginationContentFloat li a:hover {
  background-color: #f0f0f0;
}

.divPaginationContentFloat li.active span {
  background-color: #0E2E69;
  color: #ffffff;
}

.no-donations {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.no-donations-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.no-donations h2 {
  color: #0E2E69;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 500;
}

.no-donations p {
  color: #555f71;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .donationsContainer {
    padding: 12px;
  }
  
  .donation-card {
    width: 100%;
    max-width: 400px;
  }
  
  .donations-title {
    font-size: 28px;
    padding: 0 16px;
  }
}