.about-sec-3 ul li::before {
    content: '\f135';
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: #00ced1;
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 0.85em;
}

/* YouTube Reel */
.yt-reel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0 20px;
}
.yt-reel__item {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}
.yt-reel__item:hover {
    transform: translateY(-4px);
}
.yt-reel__thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--theme-color);
    box-shadow: 0 0 8px rgba(14, 254, 255, 0.4), 0 0 20px rgba(14, 254, 255, 0.2);
    aspect-ratio: 16 / 9;
}
.yt-reel__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}
.yt-reel__item:hover .yt-reel__thumb img {
    opacity: 0.75;
}
.yt-reel__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.yt-reel__item:hover .yt-reel__play {
    opacity: 1;
}
.yt-reel__play i {
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.7));
}
.yt-reel__title {
    font-size: 0.85rem;
    margin: 8px 4px 2px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.yt-reel__date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 4px;
}
.yt-reel__channel-link {
    text-align: center;
    margin-top: 16px;
}
.yt-reel__channel-link a {
    color: var(--theme-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
}
.yt-reel__channel-link a:hover {
    opacity: 0.75;
}
.yt-reel__channel-link i {
    margin-right: 6px;
}
@media (max-width: 767px) {
    .yt-reel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .yt-reel { grid-template-columns: 1fr; }
}
