.division-hero {
    height: 300px;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: rgba(43, 45, 49, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    transition: all 0.3s ease;
    cursor: pointer;
}

.division-hero:hover {
    transform: translateY(-4px);
    border-color: rgba(188, 163, 59, 0.6);
    box-shadow: 0 8px 24px rgba(188, 163, 59, 0.2);
    background: rgba(43, 45, 49, 0.95);
}

.division-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 25%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.3) 75%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    border-radius: 12px 12px 0 0;
}

.division-hero:hover::before {
    opacity: 1;
}

.division-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.division-hero:hover img {
    transform: scale(1.05);
}

.division-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .division-hero {
        height: 200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .division-hero {
        height: 250px;
    }
}
