
/* Grid */
.eb-grid{display:grid;gap:24px}
.eb-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.eb-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.eb-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.eb-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}
@media (max-width:992px){.eb-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:600px){.eb-grid{grid-template-columns:1fr}}

.eb-card{border:1px solid #e6e6e6;border-radius:14px;overflow:hidden;background:#fff;box-shadow:0 1px 4px rgba(0,0,0,.05);display:flex;flex-direction:column}
.eb-card-imgwrap{background:#fafafa;display:flex;align-items:center;justify-content:center;min-height:220px}
.eb-card-img{width:100%;height:auto;display:block;object-fit:cover}
.eb-card-placeholder{width:100%;height:220px;display:flex;align-items:center;justify-content:center;background:#f2f2f2;color:#888}
.eb-card-body{padding:16px;text-align:center}
.eb-name{margin:8px 0 4px;font-size: 18px !important;}
.eb-aff{margin:0 0 12px;color:#666}
.eb-btn{display:inline-block;padding:10px 14px;border-radius:10px;background:#3db166;color:#fff !important;text-decoration:none}
.eb-btn:hover{opacity:.9}

/* Profile */
.container{max-width:1100px;margin:0 auto;padding:20px}
.eb-profile-header{display:flex;gap:24px;align-items:flex-start;flex-wrap:wrap;margin-bottom:10px}
.eb-profile-photo{flex:0 0 260px}
.eb-profile-img{border-radius:14px;width:100%;height:auto}
.eb-profile-meta{flex:1 1 300px}
.eb-profile-name{margin:.2rem 0}
.eb-profile-designation{color:#6b6b6b;margin-bottom: 5px;font-size: 14px;padding: 0;margin-top: -10px;}
.eb-profile-aff{color:#333;margin:.2rem 0 1rem}
.profile-designation{color:#6b6b6b;margin-bottom: 5px;padding: 0;margin-top: -10px;}

/* Accordion */
.eb-accordion{margin-top:16px;border:1px solid #e6e6e6;border-radius:14px;overflow:hidden}
.eb-acc-item + .eb-acc-item{border-top:1px solid #e6e6e6}
.eb-acc-toggle{width:100%;text-align:left;background:#3db166;border:0;font-size:1rem;padding:14px 16px;display:flex;justify-content:space-between;align-items:center;cursor:pointer}
.eb-acc-toggle:hover{opacity:.9}
.eb-acc-icon{transition:transform .2s ease}
.eb-acc-panel{max-height:0;overflow:hidden;transition:max-height .25s ease}
.eb-acc-panel.eb-open{max-height:1000px}
.eb-acc-item[aria-expanded="true"] .eb-acc-icon,
.eb-acc-toggle[aria-expanded="true"] .eb-acc-icon{transform:rotate(180deg)}
.eb-acc-content{padding:14px 16px;background:#fff}