.socialgl-container {
    text-align: center;
    padding: 20px;
}

.socialgl-container.light {
    background-color: #f5f5f5;
    color: #333;
}

.socialgl-container.dark {
    background-color: #111;
    color: #fff;
}

.logo img {
    max-width: 200px;
    margin-bottom: 10px;
}

.description {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.socialgl-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.socialgl-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #eee;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.socialgl-links a:hover {
    background-color: #ccc;
}

.socialgl-links img {
    width: 24px;
    height: 24px;
}

.socialgl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.grid-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.square-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.square-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .socialgl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .socialgl-grid {
        grid-template-columns: 1fr;
    }
}