/* Grid Layout */
.tc-process-grid {
    display: grid;
    /* Default to 2 columns if not set via JS (though inline style handles it) */
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.tc-process-item {
    position: relative;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Number Defaults */
.tc-ps-number {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Content Defaults */
.tc-ps-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.tc-ps-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* --- Style 1: Mockup Match (Horizontal Left Number) --- */
.tc-process-style_1 .tc-process-item {
    display: flex;
    align-items: flex-start;
}

.tc-process-style_1 .tc-ps-number {
    /* Shadow handled by control default */
}

/* --- Style 2: Vertical Center --- */
.tc-process-style_2 .tc-process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tc-process-style_2 .tc-ps-number {
    margin-bottom: 20px;
}

/* --- Style 3: Simple Card --- */
.tc-process-style_3 .tc-process-item {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.tc-process-style_3 .tc-ps-number {
    margin: 0 auto 20px;
    background-color: #f9f9f9;
}

/* --- Style 4: Connected Timeline --- */
.tc-process-style_4 .tc-process-item {
    text-align: left;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid #e1e1e1;
}

.tc-process-style_4 .tc-ps-number {
    position: absolute;
    left: -26px;
    /* Half size (approx 50px) + border */
    top: 0;
    background: #fff;
    border: 2px solid #e1e1e1;
    width: 50px;
    /* Force size override if needed for alignment */
    height: 50px;
}

/* --- Style 5: Minimal Bordered --- */
.tc-process-style_5 .tc-process-item {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
}

.tc-process-style_5 .tc-ps-number {
    background-color: transparent;
    border: 2px solid #1e73be;
    /* Theme color */
    color: #1e73be;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .tc-process-grid {
        grid-template-columns: 1fr !important;
    }
}