
.csg-grid {
    display: grid;
    width: 100%;
    box-sizing: border-box;
}

.csg-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.csg-image-holder {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.csg-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.csg-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.csg-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.csg-title-text {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.csg-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.csg-description p {
    margin: 0 0 5px 0;
}

.csg-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.csg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.csg-button:hover {
    opacity: 0.9;
}
