/* Depan Hero Section */
.hero-section {
    padding: 30px 0;
    background: #f8f9fa;
}

.hero-content {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 30px;
    color: white;
}

.category-tag {
    background: #dc3545;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-overlay h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-overlay h2 a {
    color: white;
    text-decoration: none;
}

.meta-info {
    display: flex;
    gap: 20px;
    font-size: 13px;
    opacity: 0.9;
}

.hero-sidebar {
    padding-left: 20px;
}

.sidebar-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sidebar-item:hover {
    transform: translateY(-3px);
}

.sidebar-image {
    flex-shrink: 0;
}

.sidebar-image img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.sidebar-content {
    flex: 1;
}

.sidebar-content .category-tag {
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 8px;
}

.sidebar-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.sidebar-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-content h4 a:hover {
    color: #dc3545;
}

.sidebar-content .date {
    font-size: 12px;
    color: #666;
}

@media (max-width: 991px) {
    .hero-sidebar {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .hero-image img {
        height: 300px;
    }
}