.ct-813-wrapper {
    padding: 30px;
    border-radius: 8px;
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    line-height: 1.6;
}

.ct-813-main-heading {
    font-family: var(--e-global-typography-primary-font-family), serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 30px;
}

.ct-813-table {
    display: flex;
    flex-direction: column;
}

.ct-813-header,
.ct-813-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid;
}

.ct-813-header {
    border-bottom-width: 2px;
    font-weight: bold;
}

.ct-813-row:last-child {
    border-bottom: none;
}

.ct-813-label {
    font-weight: 600;
}

@media (max-width: 767px) {
    .ct-813-header,
    .ct-813-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 0;
    }
    
    .ct-813-header .ct-813-label {
        display: none;
    }
    
    .ct-813-label {
        color: var(--e-global-color-accent);
        margin-bottom: 5px;
    }
}