/*** HERO CSS ***/
.HeroPartnerships {
  display: grid;
  grid-template-columns: 65% 35%;
}
@media (width <= 1174px) {
  .HeroPartnerships {
    grid-template-columns: 1fr;
  }
}
.HeroPartnerships-img {
  grid-column: 1/3;
  grid-row: 1/2;
  z-index: 1;
  display: grid;
  justify-items: end;
}
@media (width <= 1174px) {
  .HeroPartnerships-img {
    order: 1;
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.HeroPartnerships-img img {
  inline-size: 60%;
  align-self: end;
  height: auto;
}
@media (width <= 1174px) {
  .HeroPartnerships-img img {
    inline-size: 100%;
  }
}
.HeroPartnerships-content {
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 2;
  background: linear-gradient(to right, #fff 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-inline-start: 6vw;
}
@media (width <= 1174px) {
  .HeroPartnerships-content {
    order: 2;
    grid-column: 1/2;
    grid-row: 2/3;
    background: transparent;
    padding: 20px 6vw;
  }
}
.HeroPartnerships-content h1 {
  padding-block-start: 0;
  margin-block-start: 0;
  max-inline-size: 600px;
}
@media (width <= 1174px) {
  .HeroPartnerships-content h1 {
    max-inline-size: 100%;
  }
}
.HeroPartnerships-content p {
  max-inline-size: 600px;
}
@media (width <= 1174px) {
  .HeroPartnerships-content p {
    max-inline-size: 100%;
  }
}

#edbenefits i {
  margin-inline: 0 10px;
}

#edbenefits .hidden-img-sm {
  max-block-size: 350px;
}
#why-wilmu-block.special {
	padding-block-start: 0;
}
h2.H3 {
	        margin-block-start: 0;
}
#Greenrow, #why-wilmu-block {
	padding-block: 50px;
}
#Formframe br {
  display: none !important;
}
#requestFrame {
	border: none;
	block-size: -webkit-fill-available; /* Prevent webkit browsers from overflowing block size. */ 
	block-size: -moz-available; /* Prevent gecko browsers from overflowing block size. */
	min-block-size: 100dvi;
}
@media (width <= 1023px) {
  #requestFrame {
    border: none;
    max-inline-size: 100%;
    inline-size: 100%;
    block-size: 1010px;
  }
}
/*** TILE CSS ***/
.Tile {
  border-radius: 20px;
  align-items: flex-start;
  padding: 20px;
  text-align: left;
  box-shadow: 0px 2px 6px 1px #eee;
  background: #fff;
}
.Tile i {
  font-size: 2.5em;
  color: #00843d;
}
.Tile p {
  line-height: 1.2;
  margin-block-start: 12px;
}
.Tile-link {
  padding: 0;
}
.Tile-link p {
  margin: 0;
  block-size: 100%;
}
.Tile-link p a {
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  block-size: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}
.Tile-link p a span {
  font-size: 1em;
  color: #404040;
  text-align: left;
  margin-block-start: 12px;
}
.Tile-link:hover {
  box-shadow: inset 0px 0px 3px 2px #eee;
  cursor: pointer;
}

/*** PROGRAMS CSS ***/
.StackedNav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.StackedNav ul li a {
  inline-size: 100%;
  display: flex;
  border-block-end: solid 1px #707070;
  padding: 10px 20px;
  justify-content: space-between;
  text-decoration: none;
  font-weight: 700;
  align-items: center;
  transition: background 0.3s;
}
.StackedNav ul li a:hover {
  background: #DCF0DD;
}
.StackedNav ul li:first-child a {
  border-block-start: solid 1px #707070;
}
/* Best practices 

Static, decorative icon → background-image
Anything interactive, responsive, or dynamic → ::after

Recommendation

If you’re already using Flexbox (which you are), go with ::after. 
It’s more consistent and future-proof—especially if your design evolves. 
*/
.StackedNav li a::after {
  content: "";
  inline-size: 20px;
  block-size: 20px;
  background-image: url("https://www.wilmu.edu/images/icons/icon-right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-inline-start: 10px;
}
/*** TESTIMONIAL CSS ***/
#testimonial-block h2 {
	margin-block-start: 0;
}
.Border-gradient-3 { /* This is the 3 column bottom border for the testimonial block. */
	border-style: solid;
	border-color: transparent;
	border-width: 0;
	border-block-end-width: 10px;
	border-image-source: linear-gradient( to right, #CCC 0% 33%, #F9C22B 33% 66%, #00843D 66% 100% );
	border-image-slice: 1;
}
.circle-clip { /* Ensures testimonial image displays as a circle */
	max-inline-size: 250px;
	max-block-size: 250px;
	inline-size: 100%;
	aspect-ratio: 1;
	-webkit-clip-path: circle(50%);
	clip-path: circle(50%);
}
.testimonial-Img {
    max-inline-size: 100px; /* Keep testimonial logo small */
}
/*** UTILITY CLASSES - helper classes?? ***/
.Margin-center {margin-inline: auto;} /* similar to margin-left and margin-right */
.Text-balance {text-wrap: balance;} /* for headings */
.Text-pretty {text-wrap: pretty;} /* for paragraphs, No FF support yet */ 
.Content-center {align-content: center;} /* Is there an existing class for this?? */


/*** Items 1, 2 are missing adjustments for mobile. 3 is for hiding an image block on mobile (needs review) ***/
@media (width <= 1023px) {
  .Columns-centerH {
    justify-items: self-start;
  }
  .Item-left,
  .Item-right {
    justify-self: center; 
    text-align: center;
  }
  .hidden-img-sm {
    display: none;
    visibility: hidden;
    block-size: 0;
    inline-size: 0;
  }
      #YourSupportTeam,
  #YourSupportTeam .Btn-group ul {
    flex-direction: column;
    align-items: center;
    text-align: center;
    place-items: center;
  }
  #YourSupportTeam h2 {
	margin-block: 25px 5px;
	text-align: center;
  }
  .Max400 {
	max-inline-size: 100%;
  }
}