.navy-bg ul li:nth-child(1) {
    background-image: url("/images/services/Taxinvoice/navy-bg1.webp");
}
.navy-bg ul li:nth-child(2) {
    background-image: url("/images/services/Taxinvoice/navy-bg2.webp");
}
.navy-bg ul li:nth-child(3) {
    background-image: url("/images/services/Taxinvoice/navy-bg3.webp");
}

figcaption:has(#company-status-list) {
    display: flex;
    flex-direction: column;
    height: calc(100% - 10rem);
}

#company-status-list {
    margin-top: auto;
    padding-top: 2rem;
    margin-left: 2rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(5, 8.8rem);
    grid-template-rows: 8.8rem;
    position: relative;
    z-index: 2;
}
#company-status-list li {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-color: rgba(220, 220, 255, 0.2);
    border: solid 1px rgba(255, 255, 255, 0.29);
    border-radius: 50%;
    font-family: "GmarketSans";
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: -0.03em;
    color: #fff;
    padding-top: 0.5rem;
    display: grid;
    place-items: center;
}

@media (max-width: 660px) {
    figcaption:has(#company-status-list) {
        display: block;
        height: auto;
    }
    figcaption:has(#company-status-list) strong, figcaption:has(#company-status-list) p {
        text-align: center;
    }
    #company-status-list {
        display: none;
    }
}