.c4y-cg {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 5rem 0 0;
    background: #ffffff;
}
.c4y-cg__inner {
    width: 100%;
    max-width: var(--global-content-width, 1152px);
    padding-left: var(--global-content-edge-padding);
    padding-right: var(--global-content-edge-padding);
    margin: 0 auto;
}
.c4y-cg__head {
    text-align: center;
    margin-bottom: 3rem;
}
.c4y-cg__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(104, 200, 81, .12);
    border-radius: 999px;
    font-size: .875rem;
    line-height: 20px;
    color: rgb(104, 200, 81);
    font-weight: 500;
    margin-bottom: 1rem !important;
}
.c4y-cg__badge svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
}
.c4y-cg .c4y-cg__title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: rgb(20, 31, 56);
    margin: 0 0 1rem !important;
    padding: 0 !important;
}
@media (min-width: 768px) {
    .c4y-cg .c4y-cg__title {
        font-size: 36px;
        line-height: 40px;
    }
}
.c4y-cg__subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgb(107, 114, 128);
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
}

.c4y-cg__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: stretch;
}
@media (min-width: 768px) {
    .c4y-cg__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1024px) {
    .c4y-cg__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.c4y-cg__card {
    background: #ffffff;
    border: 1px solid rgba(228, 231, 236, .8);
    border-radius: .75rem;
    padding: 1rem;
    height: 100%;
    min-height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    cursor: default;
}
.c4y-cg__card:hover {
    border-color: rgba(41,54,101,.3);
    box-shadow: 0 12px 28px -12px rgba(15, 23, 42, .28), 0 8px 14px -14px rgba(15, 23, 42, .35);
    transform: translateY(-2px);
}
.c4y-cg__card-name {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-bottom: .5rem;
}
.c4y-cg__card-name span {
    font-size: 14px;
    font-weight: 600;
    color: rgb(20, 31, 56);
    line-height: 20px;
    transition: color .25s;
}
.c4y-cg__card:hover .c4y-cg__card-name span {
    color: rgb(41, 54, 101);
}
.c4y-cg__card-name span,
.c4y-cg__card-cat {
    transition: color .3s;
}
.c4y-cg__card-cat {
    font-size: 12px;
    line-height: 16px;
    color: rgb(107, 114, 128);
    font-weight: 400;
}

.c4y-cg__card--more {
    background: rgba(41,54,101,.08);
    border-color: rgba(41,54,101,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 115px;
}
.c4y-cg__card--more span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: rgb(41, 54, 101);
    text-align: center;
}
