.sdm-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
}

.sdm-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
    background: #fff;
    transition: .2s;
}

.sdm-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,.07);
}


.sdm-title {
    margin: 0 0 6px;
}

.sdm-meta {
    font-size: 12px;
    opacity: .6;
    margin: 4px 0 12px;
}

.sdm-content {
    font-size: 13px;
}
.sdm-btn {
    display: inline-block;
    background: #1d62a7;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    padding: 14px 20px;
}

.sdm-btn:hover {
    background: #2e2e2e;
}
.sdm-card-icon {
    width: 55px;          /* fixed width */
    height: 60px;         /* fixed height */
    flex-shrink: 0;       /* prevent shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sdm-card-icon img.sdm-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;  /* keeps icon inside the box */
}
