.giving-block-wrapper {
  background: #fff;
  padding: 5rem 2rem;
}

.giving-block-wrapper .inner-container {
  max-width: 1250px;
  margin: 0 auto;
}

.giving-logo {
  text-align: center;
  margin-bottom: 1rem;
}

.giving-logo img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.giving-section-title {
  text-transform: uppercase;
  background-image: linear-gradient(90deg, #00addc 30%, #D41c5a 40%, #F36d24 50%);
  background-size: 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 0 auto 1rem auto;
  position: relative;
  text-align: center;
}

.giving-section-subtitle {
  margin: 0 auto 5rem;
  text-align: center;
  max-width: 960px;
	
}
.giving-section-subtitle h1,
.giving-section-subtitle h2,
.giving-section-subtitle h3,
.giving-section-subtitle h4,
.giving-section-subtitle h5,
.giving-section-subtitle h6  {
	font-weight:normal;
	font-family:'proxima-nova', sans-serif;
}
.giving-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  align-items: stretch;
}
@media (max-width: 768px) {
	.giving-block-wrapper {
    background: #fff;
    padding: 4rem 2rem 4rem;
}
	.giving-section-subtitle {
    margin: 0 auto 3rem !important;
}
}
@media (min-width: 768px) {
  .giving-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .giving-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.giving-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.giving-card {
  background: white;
  padding: 1.2rem 1.5rem 0rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.page-id-10276 .giving-card {
  background: white;
	padding: 1.2rem 2.6rem 0rem 2.6rem;}
.giving-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.giving-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px; /* thickness of the border */
  background: linear-gradient(90deg, #F36d24, #D41c5a); /* your gradient */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.giving-card:hover::before {
  opacity: 1;
}
.giving-copy p:empty,
.giving-copy p:empty::before {
  display: none;
}

.giving-copy img {
  display: block;
  margin: 0 auto 2rem;
	height:45px;
	width:auto;
}
.giving-logo-wrapper {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.giving-logo-wrapper img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}