.sfg-1471-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    align-items: start;
}

@media (min-width: 768px) {
    .sfg-1471-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sfg-1471-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sfg-1471-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sfg-1471-image-wrap {
    margin-bottom: 20px;
    overflow: hidden;
}

.sfg-1471-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.sfg-1471-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sfg-1471-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 15px 0;
    font-family: inherit;
}

.sfg-1471-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.sfg-1471-btn-wrap {
    margin-top: auto;
}

.sfg-1471-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid;
    background-color: transparent;
    transition: all 0.3s ease;
}