.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.team-card .team-card-img-outer {
    aspect-ratio: 1;
    border: 6px solid transparent;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
}

.team-card .team-card-img {
    position: relative;
    text-align: center;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;

    aspect-ratio: 1;
    z-index: 0;
    /* border-radius: 12px; */
    transition: all 0.2s ease-in-out;

    border: 1px solid #0a96e4;
    background: url("../images/s16/bgs/team-bg.png"),
        linear-gradient(to bottom, black, black);

    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.team-card:hover .team-card-img {
    border: 1px solid #ffee5a;
    background: url("../images/s16/bgs/team-bg-yellow.png"),
        linear-gradient(to bottom, black, black);

    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* .section-team .team-card .team-card-img {
    position: relative;
    text-align: center;
    max-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;

    aspect-ratio: 1;
    z-index: 0;
    transition: all 0.2s ease-in-out;

    border: none;
}

.team-card .team-card-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/s16/orns/fire-spark-bottom-gradient.webp"),
        linear-gradient(to bottom, black, black);

    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: -2;
} */

/* .team-card .team-card-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/s16/orns/orn-mid.webp") center;

    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.team-box-orn-frame::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(
        180deg,
        #ffd154 0%,
        rgba(255, 209, 84, 0) 30%,
        rgba(255, 209, 84, 0) 69.71%,
        #ffd154 100%
    );
    z-index: -3;
}

.orn-team-box-left::before,
.orn-team-box-left::after,
.orn-team-box-right::before,
.orn-team-box-right::after {
    content: "";
    position: absolute;
    width: 7px;
    height: auto;
    aspect-ratio: 1;
    background: #fae859;
}

.orn-team-box-left::before {
    top: 22%;
    left: -4px;
}
.orn-team-box-left::after {
    bottom: 22%;
    left: -4px;
}
.orn-team-box-right::before {
    top: 22%;
    right: -4px;
}
.orn-team-box-right::after {
    bottom: 22%;
    right: -4px;
} */

/* .team-card .team-card-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate();
    width: 100%;
    height: 100%;
    background: url('{{ asset("images/orns/team-frame.png") }}') center;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
} */
/* .team-card .team-card-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    background: url('{{ asset("images/orns/team-active.png") }}') center;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0;
    transition: all .15s ease-in-out;
} */
.team-card .team-card-img .team-img {
    width: 85px;
}

.team-card-url:hover .team-card-img-outer {
    /* border-color: #fccc01; */
    /* filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3)); */
}
.team-card-url:hover .team-card-img::before {
    opacity: 0.9;
}

/* .team-card-url:hover .team-card-img::after {
    opacity: 1;
} */
.team-card-url:hover .team-card-img img {
    animation: pulse; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1s; /* don't forget to set a duration! */
}

/* .team-card-url:hover .team-card-img {
    background: radial-gradient(62.12% 108.24% at 0% 0%, #535353 0%, #050505 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
} */

/* sm: phone - landscape */
@media (min-width: 576px) {
}

/* md: tablet */
@media (min-width: 768px) {
}

/* lg: desktop */
@media (min-width: 992px) {
    .team-card .team-card-title {
        font-size: 1.25rem;
    }
    .teams-section .col-lg-25 {
        width: 20%;
    }
    .team-card .team-card-img {
        /* min-height: 240px; */
        min-height: 180px;
    }
    .team-card .team-card-img .team-img {
        width: 110px;
    }
}

/* xl: wide */
@media (min-width: 1200px) {
}

/* super wide */
@media (min-width: 1440px) {
}
