.prof-grid-container {
    display: grid;
    gap: 20px;
}

/* Base styles are now handled by Elementor responsive controls */

.prof-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.prof-card-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.prof-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.prof-card-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

.prof-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 9999;
    padding: 40px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.prof-drawer.open {
    right: 0;
}

.prof-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.prof-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.prof-drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.prof-drawer-title {
    margin-bottom: 20px;
}
