/* BEGIN: https://engineering.purdue.edu/38_38_Dev/recipients/past-recipients/ */


/* BEGIN: Aged Gold Motion Headings */
.past-recipients p.motion-heading.mh-gold {
    color: #FFFFFF !important;
}
.past-recipients p.motion-heading.mh-gold:before {
    background-color: var(--aged-gold) !important;
}
/* END: Aged Gold Motion Headings */


/* BEGIN: Recipient Year Selector */
.past-recipients section.recipient-year-selector {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 0 0;
}
.past-recipients section.recipient-year-selector p {
    text-transform: uppercase;
    font-family: var(--united-sans-cond);
    font-size: 1.5rem;
}
.past-recipients .motion-heading-container {
    margin: 3rem auto;
    display: flex;
    justify-content: center;
}
.past-recipients select {
    appearance: none;
    background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20fill%3D%22%238E6F3E%22%20d%3D%22M207%20381.5L12.7%20187.1c-9.4-9.4-9.4-24.6%200-33.9l22.7-22.7c9.4-9.4%2024.5-9.4%2033.9%200L224%20284.5l154.7-154c9.4-9.3%2024.5-9.3%2033.9%200l22.7%2022.7c9.4%209.4%209.4%2024.6%200%2033.9L241%20381.5c-9.4%209.4-24.6%209.4-33.9%200z%22%2F%3E%3C%2Fsvg%3E');
    background-position: right 1rem top 50%, 0px 0px; 
    background-repeat: no-repeat; 
    background-size: 1rem auto, 100%;
    border: 2px solid var(--boiler-gold);
    border-radius: 4px;
    border-width: 0.5px;
    border-style: solid;
    border-color: var(--steam-gray);
    border-image: initial;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 5px 0px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--acumin-pro);
    font-weight: 600;
    height: 41px;
    letter-spacing: 0px;
    line-height: 1.5;
    margin-right: 1.25rem;
    padding: 0.5rem 1rem;
    user-select: none;
    width: 8rem;
}
.past-recipients select:focus {
  outline: none;
}
/* END: Recipient Year Selector */


/* BEGIN: Areas of Study Bar Graph */
.past-recipients .bar-graph-full,
.past-recipients .bar-graph-split {
    display: none;
}
.past-recipients .bar-graph {
  width: 100%;
  margin: 2rem auto;
}
.past-recipients .bar-graph .column {
  --aspect-ratio: 4 / 3;
}
.past-recipients .bar-graph .column tbody {
  max-height: 120px;
}
.past-recipients .bar-graph .column tbody tr {
  padding: 0.1rem;
}
.past-recipients .bar-graph .column tbody tr th {
  font-family: var(--acumin-pro-cond);
  font-weight: normal;
  font-size: 0.7rem;
  margin-top: 300px;
  text-align: center;
  height: 300px;
}
.past-recipients .bar-graph .column tbody td {
  transform-origin: bottom;
  animation: revealing-bars 2s linear;
  --color: linear-gradient(var(--boiler-gold), #FFFFFF);
  margin-bottom: 25px;
}
.past-recipients .bar-graph-label {
  font-size: 0.5rem;
}
@keyframes revealing-bars {
  0% {
    transform: scaleY(0);
  }
  30% {
    transform: scaleY(1);
  }
}
/* END: Areas of Study Bar Graph */


/* BEGIN: Where Are They Now Map */
.past-recipients .map-container {
    height: auto;
}
/* END: Where Are They Now Map */


/* BEGIN: Past Recipients Listing */
#page_template_embed_2025-06-23-16-16-53-411 {
  background-image: url('https://engineering.purdue.edu/38_38_Dev/recipients/past-recipients/assets/moon-texture.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem 1rem 4rem 1rem;
}
.past-recipients-list h3 {
  text-align: center;
  padding: 0 0 1rem 0;
}
.past-recipients-list ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.past-recipients-list ul li {
  font-weight: bold;
}
@media (max-width: 576px) {
    .past-recipients-list ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {  
    .past-recipients-list ul {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 992px) { 
    .past-recipients-list ul {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* END: Past Recipients Listing */


/* END: https://engineering.purdue.edu/38_38_Dev/recipients/past-recipients/ */