.aestatus {
  background-image: url("/assests/bg_status.webp");
  background-size: cover; /* Scales image to cover entire area */
  background-repeat: no-repeat; /* Prevents tiling */
  background-position: center top; /* Centers the image */
  background-attachment: fixed;
  position: static;
  backdrop-filter: blur(5px);
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 3vw;
  box-shadow: 0 0 5vw 1vw #f0f0f0 inset;
}
.aestatus .aeshead {
  padding-top: 3vw;
  justify-self: center;
  font-size: 3.8vw;
  color: rgb(153, 0, 48);
}
.aestatus .aesdes {
  justify-self: center;
  font-size: 1.6vw;
  font-weight: 500;
}
.aestatus .acardwrap {
  justify-self: center;
  padding-top: 2.5vw;
  display: grid;
  grid-template-columns: auto auto;
  width: 58.5vw;
}
.aestatus .acard {
  margin-top: 0.6vw;
  margin-bottom: 0.6vw;
  justify-self: center;
  width: 24vw;
  height: 3.5vw;
  padding: 2vw;
  background-color: rgba(240, 240, 240, 0.7450980392);
  border-radius: 0.6vw;
  display: grid;
  grid-template-columns: auto auto;
  box-shadow: 0px 0px 2vw rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(1vw);
  transition: all 0.2s;
}
.aestatus .acard .event {
  font-size: 2vw;
  font-weight: 500;
}
.aestatus .acard .status {
  font-size: 0.8vw;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.aestatus .acard .right {
  font-size: 0.8vw;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  justify-items: end;
}
.aestatus .acard a {
  color: #212529;
  padding-top: 0.8vw;
  text-decoration: underline;
}
.aestatus .acard .date {
  padding-right: 0.6vw;
}
.aestatus .acard:hover {
  background-color: rgba(240, 240, 240, 0.8);
  box-shadow: 0px 0px 2vw rgba(0, 0, 0, 0.1);
  border-radius: 0.8vw;
}
.aestatus .amalbums {
  font-size: 1.1vw;
  padding-left: 1.2vw;
  padding-right: 1.2vw;
  padding-top: 0.6vw;
  padding-bottom: 0.6vw;
  font-weight: 500;
  background-color: rgba(153, 0, 48, 0.9);
  border-radius: 0.3vw;
  box-shadow: 0px 0px 2vw rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(1vw);
  transition: all 0.2s;
}
.aestatus .amalbums:hover {
  background-color: rgb(153, 0, 48);
  border-radius: 0.4vw;
  box-shadow: 0px 0px 2vw rgba(0, 0, 0, 0.1);
}
.aestatus a {
  color: #f0f0f0;
  text-decoration: none;
}
.aestatus .amalc {
  display: flex;
  justify-self: center;
  padding-top: 1.6vw;
}

.ablur {
  display: none;
}

@media (max-width: 700px) {
  .aestatus {
    overflow: hidden;
    background-image: none;
    width: 100vw;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 7.5vw;
    box-shadow: none;
  }
  .aestatus .aeshead {
    padding-top: 22vw;
    justify-self: center;
    font-size: 10vw;
    color: rgb(153, 0, 48);
    z-index: 5;
  }
  .aestatus .aesdes {
    justify-self: center;
    font-size: 5vw;
    font-weight: 500;
    z-index: 5;
    padding-bottom: 16vw;
  }
  .aestatus .acontain {
    background-color: #f0f0f0;
    border-radius: 0vw 0vw 1vw 1vw;
  }
  .aestatus .acardwrap {
    justify-self: center;
    padding-top: 7.5vw;
    display: grid;
    grid-template-columns: auto;
    width: 100vw;
  }
  .aestatus .acard.last {
    display: none;
  }
  .aestatus .acard {
    margin-top: 2vw;
    margin-bottom: 2vw;
    justify-self: center;
    width: 70vw;
    height: 15vw;
    padding: 6vw;
    background-color: rgba(240, 240, 240, 0.5019607843);
    border-radius: 2vw;
    display: grid;
    grid-template-columns: auto auto;
    box-shadow: 0px 0px 5vw rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20vw) saturate(300%);
    z-index: 5;
  }
  .aestatus .acard .event {
    font-size: 6vw;
    font-weight: 500;
  }
  .aestatus .acard .status {
    font-size: 3vw;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
  .aestatus .acard .right {
    font-size: 2.5vw;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    justify-items: end;
    padding-top: 2.2vw;
  }
  .aestatus .acard .left {
    padding-top: 1.5vw;
  }
  .aestatus .acard a {
    color: #212529;
    padding-top: 2.5vw;
    text-decoration: underline;
  }
  .aestatus .acard .date {
    padding-right: 2vw;
  }
  .aestatus .acard:hover {
    background-color: rgba(240, 240, 240, 0.5647058824);
    border-radius: 3vw;
    box-shadow: 0px 0px 5vw rgba(0, 0, 0, 0.1);
  }
  .aestatus .amalbums {
    font-size: 4vw;
    padding-left: 3.5vw;
    padding-right: 3.5vw;
    padding-top: 1.75vw;
    padding-bottom: 1.75vw;
    margin-top: 1vw;
    font-weight: 500;
    z-index: 5;
    background-color: rgba(153, 0, 48, 0.9);
    border-radius: 1.25vw;
    box-shadow: 0px 0px 5vw rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(1vw);
  }
  .aestatus a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .aestatus .amalc {
    display: flex;
    justify-self: center;
    padding-top: 1.6vw;
  }
  .ablur {
    position: fixed;
    z-index: -1;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-family: "Meddon", cursive;
    font-size: clamp(1000px, 150vw, 2400px);
    line-height: 1;
    color: transparent;
    background: linear-gradient(178deg, rgba(153, 0, 48, 0.5) 0%, rgba(255, 160, 51, 0.5) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    filter: blur(10vw);
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}/*# sourceMappingURL=albums.css.map */