.c-personil-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 10px;
}
.c-personil-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}
.c-personil-card:hover {
    transform: translateY(-5px);
}
.c-personil-photo {
    flex: 0 0 150px;
    height: 150px;
    overflow: hidden;
}
.c-personil-photo img {
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    width: 80%;
    height: 100%;
    object-fit: cover;
}
.c-personil-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.c-personil-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: #333;
}
.c-personil-details {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}
/* Style for tables inside the editor content */
.c-personil-details table {
    width: 100%;
    border-collapse: collapse;
}
.c-personil-details th, .c-personil-details td {
    border: none;
}
h1.page-title {
    background: none !important;
}
.c-personil-details td {
    padding: 2px 5px 2px 0;
    vertical-align: top;
}

@media (max-width: 600px) {
    .c-personil-card {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .c-personil-photo {
        flex: 0 0 200px;
        width: 100%;
    }
}
