.desc-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}
.desc-grid__item {
    position: relative;
    width: 25%;
    cursor: pointer;
}
.desc-grid__item:after {
    content: "";
    position: absolute;
    left: calc(50% - 18px);
    bottom: -18px;
    display: block;
    border: 18px transparent solid;
    border-bottom: 18px #1b2a38 solid;
    opacity: 0;
    transition: 0s all ease;
    transition-delay: 0s;
}
.desc-grid__item.active:after {
    opacity: 1;
    transition: 0.3s;
    transition-delay: 0.3s;
}
.desc-grid__item-container {
    position: relative;
    height: 100%;
    padding: 12px;
    overflow: hidden;
}
.desc-grid__item-hover-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 135%;
    opacity: 0;
    transition: 0.3s all ease;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: 10s linear 0s infinite gridBg;
    animation-play-state: paused;
}
.desc-grid__item:hover .desc-grid__item-hover-bg,
.desc-grid__item.active .desc-grid__item-hover-bg {
    opacity: 1;
    animation-play-state: running;
}
@keyframes gridBg {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.desc-grid__item-content {
    position: relative;
    height: 100%;
    background-color: #fff;
}
.desc-grid__item-img {
    width: 100%;
}
.desc-grid__item article {
    padding: 16px;
}
.desc-grid__item article h2 {
    font-size: 16px;
    font-family: "Roboto Condensed", "Noto Sans TC", sans-serif;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}
:lang(zh-cn) .desc-grid__item article h2 {
    font-family: "Roboto Condensed", "Noto Sans SC", sans-serif;
}
.desc-grid__info {
    display: none;
}
.desc-grid__item:hover .desc-grid__item-content,
.desc-grid__item.active .desc-grid__item-content {
    background-color: #192939;
}
.desc-grid__item:hover h2,
.desc-grid__item.active h2 {
    color: #fff;
}
.desc-grid__toggle-holder {
    display: none;
    position: relative;
    width: 100%;
    margin: 18px 12px 12px;
    color: #fff;
    background-color: #192939;
}
.desc-grid__toggle-close {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: auto;
    margin-bottom: 24px;
    padding: 0;
    border: 0;
    background-color: transparent;
    background-image: linear-gradient(to bottom, #e3ad7c, #5a2715);
}
.desc-grid__toggle-close:before {
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    background-color: #fff;
}
.desc-grid__toggle-textarea {
    padding: 0 38px;
}
.desc-grid__info-name {
    color: #fff;
    margin-bottom: 0;
}
.desc-grid__info-title {
    font-weight: bold;
}
.desc-grid__info-desc {
    position: relative;
    margin-bottom: 38px;
}
.desc-grid__info-desc h3 {
    color: #fff;
    font-family: "Roboto Condensed", "Noto Sans TC", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 6px;
}
:lang(zh-cn) .desc-grid__info-desc h3 {
    font-family: "Roboto Condensed", "Noto Sans SC", sans-serif;
}
.desc-grid__info-desc:before,
.desc-grid__info-desc:after {
    content: "";
    position: absolute;
    top: -6px;
    left: -24px;
    width: 14px;
    height: calc(14px * 1.75);
    background-image: url(/hkca/files/img/achievements/quote_start.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.desc-grid__info-desc:after {
    top: auto;
    left: auto;
    right: -24px;
    bottom: -6px;
    background-image: url(/hkca/files/img/achievements/quote_end.png);
}
.conven-title {
    text-align: center;
    background-color: #153455;
    padding: 1em;
}
.conven-title h2 {
    color: #fff;
    margin: 0;
}
.conven-content {
    margin: 0 auto;
    text-align: center;
}
.conven-content__list {
    display: inline-block;
    text-align: left;
    margin-bottom: 0;
    padding-inline-start: 20px;
    color: #153455;
}
.conven-content__list li {
    margin-bottom: 8px;
}
@media screen and (max-width: 991px) {
    .desc-grid__item {
        width: calc(100% / 3);
    }
}
@media screen and (max-width: 479px) {
    .desc-grid__item {
        width: 50%;
    }
}
/* Toggle holder */
@media screen and (max-width: 991px) {
    .desc-grid__toggle-holder--desktop {
        display: none !important;
    }
}
@media screen and (max-width: 479px) {
    .desc-grid__toggle-holder--tablet {
        display: none !important;
    }
}
@media screen and (min-width: 992px) {
    .desc-grid__toggle-holder--tablet {
        display: none !important;
    }
}
@media screen and (min-width: 480px) {
    .desc-grid__toggle-holder--mobile {
        display: none !important;
    }
}
