/* B-P0 extracted from index.html (block 3) */
#company-pics-section .company-pics-item.company-pics-item-dark {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
#company-pics-section .company-pics-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    width: 100%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
#company-pics-section .company-pics-item.company-pics-item-dark:hover .company-pics-caption {
    opacity: 1;
    transform: translateY(0);
}
#company-pics-section .company-pics-item.company-pics-item-dark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
#company-pics-section .company-pics-item.company-pics-item-dark:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 50px rgba(26,115,232,0.2);
}
#company-pics-section .company-pics-item.company-pics-item-dark:hover img {
    transform: scale(1.08);
}
@keyframes company-pics-glow {
    from { filter: drop-shadow(0 0 20px rgba(26,115,232,0.5)); }
    to   { filter: drop-shadow(0 0 40px rgba(96,165,250,0.7)); }
}
@media (max-width: 768px) {
    #company-pics-section .company-pics-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
    #company-pics-section .company-pics-grid { grid-template-columns: 1fr !important; }
}
