#feature-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 32px;
    padding: 32px;

    overflow-y: auto;

    height: 100%;
}

.feature-item, .feature-item-skeleton {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    min-height: 15rem;
}

.feature-item {
    position: relative;

    background-color: var(--color-blue-background);

    border-radius: 20px;

    height: 100%;
    width: 100%;
    max-height: 40vh;

    padding: 10px 20px;
}

.feature-item-skeleton {
    position: relative;

    background-color: var(--color-blue-background);

    border-radius: 20px;

    height: 100%;
    width: 100%;
    max-height: 40vh;

    padding: 10px 20px;

    opacity: 66%;
}

.feature-item-skeleton:before {
    content: "";
    position: absolute;

    top: 40px;
    bottom: 50px;
    left: 20px;
    right: 20px;


    border-radius: 20px;

    background-color: rgba(255, 255, 255, 0.15);
}

.feature-item-skeleton:after {
    content: "";
    position: absolute;

    bottom: 15px;
    left: 20px;

    height: 20px;
    width: 30%;

    border-radius: 20px;

    background-color: rgba(255, 255, 255, 0.15);
}