.ps-1378-container {
    width: 100%;
}

.ps-1378-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ps-1378-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* Content Column */
.ps-1378-content-col {
    display: flex;
    flex-direction: column;
}

.ps-1378-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.ps-1378-eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    margin-right: 15px;
}

.ps-1378-heading {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 30px 0;
}

.ps-1378-body {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ps-1378-supporting {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Cards Column */
.ps-1378-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ps-1378-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-1378-card:hover {
    transform: translateY(-5px);
}

.ps-1378-card-icon {
    font-size: 24px;
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
}

.ps-1378-card-icon svg {
    width: 24px;
    height: 24px;
}

.ps-1378-card-title {
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.ps-1378-card-desc {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .ps-1378-grid {
        grid-template-columns: 1fr;
    }
    
    .ps-1378-heading {
        font-size: 32px;
    }
    
    .ps-1378-content-col {
        margin-bottom: 40px;
    }
}