/* Speaker Grid Styles */
.row.align-equal {
    display: flex;
    flex-wrap: wrap;
}

.box-image-inner.image-cover {
    position: relative;
    height: 0;
    overflow: hidden;
}

.box-image-inner.image-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Speaker Card Styles */
.box.has-hover {
    background: #fff;
    border-radius: 5px;

    transition: all 0.3s ease;
}



/* Speaker Details */
.box-text {
    padding: 15px;
}

.person-name {
    font-weight: bold;
    color: #333;
}

.person-title {
    font-size: 0.9em;
    opacity: 0.7;
}

/* Lightbox Styles */
.lightbox-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.social-icons.follow-icons {
    margin-top: 15px;
}

.social-icons a {
    margin: 0 5px;
    color: #0077b5;
}

/* Responsive Styles */
@media (max-width: 549px) {
    .col.small-12 {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (min-width: 550px) {
    .col.medium-3 {
        flex-basis: 25%;
        max-width: 25%;
    }
} 