.dnd-sg-wrap {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
}

.dnd-sg-header {
    display: none;
}

.dnd-sg-grid {
    display: grid;
    grid-template-columns: repeat(var(--dnd-sg-cols, 4), 1fr);
    gap: 16px;
}

.dnd-sg-card {
    background: var(--dnd-sg-card-bg, #ffffff);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    box-shadow: 0 1px 4px rgba(40,62,111,0.06);
    position: relative;
}

.dnd-sg-card:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 36px rgba(40,62,111,0.15);
    z-index: 2;
}

.dnd-sg-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #dde1ec;
    flex-shrink: 0;
}

.dnd-sg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dnd-sg-card:hover .dnd-sg-img-wrap img {
    transform: scale(1.07);
}

.dnd-sg-no-img {
    width: 100%;
    height: 100%;
    background: #dde1ec;
}

.dnd-sg-body {
    padding: 14px 16px 18px;
    flex: 1;
}

.dnd-sg-title {
    font-size: 12px;
    font-weight: 700;
    color: #1a2540;
    line-height: 1.4;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.dnd-sg-excerpt {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .dnd-sg-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .dnd-sg-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
