.gallery-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    transition: 0.4s;
    & a {
        display: flex;
        background: #F1F5F9;
        width: 100%;
        align-items: center;
        justify-content: center;
        position: relative;
        border-radius: 24px;
        padding: 28px;
        overflow: hidden;
        &:before {
            content: "";
            width: 100%;
            height: 0;
            position: absolute;
            bottom: 0;
            right: 0;
            transition: 0.4s;
            background: linear-gradient(0deg, #D7B46A 0%, transparent);
            opacity: 0;
        }
        &:after {
            content: "\e932";
            font-family: 'icomoon';
            width: 52px;
            height: 52px;
            border-radius: 50%;
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translate(50%, 50%);
            background: rgb(255 255 255 / 28%);
            backdrop-filter: blur(4px);
            color: white;
            background-size: 80%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: 0.4s;
            opacity: 0;
        }
    }
    & .honor-content {
        font-size: clamp(14px, 2vw, 18px);
        font-family: var(--Medium);
        width: 100%;
        text-align: center;
        position: relative;
    }
    &:hover a:before {
        height: 80%;
        opacity: 1;
    }
    &:hover a:after {
        bottom: 50%;
        opacity: 1;
    }
}