/* body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #f8f8f8;
} */
.header-search {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #6a3f9c;
  gap: 15px;
}
.back-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.back-button .icon {
  width: 24px;
  height: 24px;
  color: white;
}
.search-bar {
  flex-grow: 1;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 25px;
  padding: 8px 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.search-bar input {
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  padding: 0;
}
.search-bar input::placeholder {
  color: #888;
}
.search-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.search-button .icon {
  width: 20px;
  height: 20px;
  color: #888;
}
.section-title {
  font-size: 24px;
  color: #333;
  margin: 25px 20px;
  font-weight: normal;
}


.gradient-button {
  background-image: linear-gradient(to right, #6a1b9a, #9c27b0);
  border: none;
  border-radius: 12px;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.gradient-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}




.news-container {
  max-width: 700px;
  /* margin: 20px auto; */
  background-color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  border-radius: 8px;
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}
.view-all {
  color: #6a3cb5;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.news-list {
  display: flex;
  flex-direction: column;
}
.news-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}
.news-content {
  flex-grow: 1;
}
.news-date {
  background-color: #e0e0e0;
  color: #555555;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
.news-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.news-description {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}
.news-thumbnail {
  width: 159px;
  height: 128px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.news-thumbnail img {
  width: 159px;
  height: 128px;
  object-fit: cover;
}
.news-separator {
  border: 1px solid grey;
  border-color: grey;
  border-top: 1px solid #eeeeee;
  margin: 20px 0;
  margin-top:0px;
  margin-bottom:10px;
}





/* body {
  font-family: "Arial", sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 20px;
}
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
} */
h1 {
  color: #4d4d4d;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}
.fundraiser-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #ededed;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.fundraiser-item:last-child {
  margin-bottom: 0;
}
.fundraiser-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.icon-svg {
  width: 32px;
  height: 32px;
}
.fundraiser-name {
  color: #4d4d4d;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
}
