/* ===================================
   UTILITY STYLES - Ndigboamaka
   =================================== */

/* Executives Section */
.other-executives {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.other-executives li {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: default;
    list-style: none;
}

.other-executives li:hover {
    background: white;
    border-color: #0a8f3c;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1), 0 0 0 3px rgba(10,143,60,0.1);
    transform: translateY(-2px);
}

.other-executives li p {
    text-align: center;
    margin-bottom: 4px;
    font-weight: 600;
    color: #0a0f1a;
    font-size: 0.95rem;
}

.title {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .other-executives {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .other-executives {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ===================================
   IMAGE GALLERY
   =================================== */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.gallery-image {
    flex: 0 0 auto;
    width: calc(50% - 8px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15), 0 8px 10px -6px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .gallery-image {
        width: 100%;
        max-width: 100%;
    }
}

/* ===================================
   NAME BLOCKS / BODY TEXT
   =================================== */
.name-block br {
    line-height: 20px;
}

.name-block p {
    font-style: normal;
    font-size: 1rem;
    margin-bottom: 12px;
    color: #475569;
    line-height: 1.8;
}

/* ===================================
   YOUTUBE VIDEO EMBED
   =================================== */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.embed-responsive::before {
    display: block;
    content: '';
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===================================
   SOCIAL SHARE ICONS (legacy)
   =================================== */
.social-share-link,
.social-share-link + span {
    color: rgba(255, 255, 255, 0.65);
}

/* ===================================
   DYNAMIC LIST GROUP (upcoming events)
   =================================== */
.list-group-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(10,143,60,0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Address the missing gap utility in Bootstrap 5 */
.max-width-900 {
    max-width: 900px;
}
