.program-card-e6b6334e {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.program-card-e6b6334e .pc-image-area {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.program-card-e6b6334e .pc-image-area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.program-card-e6b6334e .pc-content-area {
    flex: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.program-card-e6b6334e .pc-meta {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 12px;
}

.program-card-e6b6334e .pc-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    margin-top: 0;
}

.program-card-e6b6334e .pc-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.program-card-e6b6334e .pc-btn {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.program-card-e6b6334e .pc-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .program-card-e6b6334e {
        flex-direction: column;
    }
    
    .program-card-e6b6334e .pc-image-area {
        padding: 40px 20px;
    }
    
    .program-card-e6b6334e .pc-content-area {
        padding: 30px 20px;
    }
}