.scg-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}
@media (max-width: 1410px) {
    .scg-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
@media (max-width: 1100px) {
    .scg-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    .scg-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.scg-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
    background: #ffffff;
    text-decoration: none;
    color: inherit;
}
.scg-card:hover .scg-title {
    color: #F36D21;
}
.scg-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    background: #ffffff;
}
.scg-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.scg-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scg-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #080808;
    font-family: "Wix Madefor Display", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}