/* ========================================
   About Page Styles
======================================== */

.feature-number {
    width: 60px;
    height: 60px;
    background-color: var(--lf-orange);
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-title {
    color: var(--lf-text-primary);
}

.col-12:not(:last-child) .feature-number::after {
    content: "";
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background-color: var(--lf-border-color);
}

#facility video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-wrapper {
    position: relative;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 131, 0, 0.9);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-btn > svg {
    color: #fff;
}

.video-play-btn:hover {
    background-color: rgba(255, 131, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn.playing {
    opacity: 0;
    pointer-events: none;
}

.team-name {
    color: var(--lf-text-primary);
}

.team-role {
    color: var(--lf-orange);
    font-weight: 600;
    font-size: 0.875rem;
}

.team-card {
    background-color: transparent;
    overflow: hidden;
}

.team-card .card-body {
    padding: 1.75em 1.25em;
}

.team-image-wrapper {
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.team-card .card-img-top {
    transition: transform 0.3s ease;
    display: block;
    width: 100%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.team-card:hover .card-img-top {
    transform: scale(1.1);
}
