.csc-9207f803-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    gap: 30px;
    font-family: sans-serif;
    border: 1px solid #f3f4f6;
}

.csc-9207f803-image-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csc-9207f803-image-col img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.csc-9207f803-content-col {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.csc-9207f803-pre-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a73e8;
    margin-bottom: 8px;
}

.csc-9207f803-title {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.csc-9207f803-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.csc-9207f803-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.csc-9207f803-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background-color: #eef4ff;
    color: #1a73e8;
}

.csc-9207f803-results-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.csc-9207f803-results-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #374151;
    margin-bottom: 20px;
}

.csc-9207f803-results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.csc-9207f803-result-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.csc-9207f803-result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #1a73e8;
    font-size: 24px;
}

.csc-9207f803-result-icon svg {
    width: 24px;
    height: 24px;
    fill: #1a73e8;
}

.csc-9207f803-result-text {
    display: flex;
    flex-direction: column;
}

.csc-9207f803-stat-val {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 4px;
}

.csc-9207f803-stat-label {
    font-size: 13px;
    color: #4b5563;
}

/* Desktop layout */
@media (min-width: 1025px) {
    .csc-9207f803-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
    
    .csc-9207f803-results-col {
        border-left: 1px solid #e5e7eb;
        padding-left: 30px;
    }
}

/* Tablet layout */
@media (min-width: 768px) and (max-width: 1024px) {
    .csc-9207f803-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .csc-9207f803-image-col {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .csc-9207f803-content-col {
        flex: 1;
        padding-right: 20px;
    }
    .csc-9207f803-results-col {
        flex: 1;
        border-left: 1px solid #e5e7eb;
        padding-left: 20px;
    }
}