/* Other Corporate Topics Section - Tema Yapısına Uygun */
.other-corporate-topics {
    padding: 100px 0;
    background: var(--primary-dark);
}

.other-corporate-topics .section-row {
    margin-bottom: 60px;
}

.corporate-topic-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s ease;
    border: 1px solid var(--secondary-color-dark)
}

.corporate-topic-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 211, 6, 0.3);
    transform: translateX(10px);
}

.corporate-topic-image {
    flex: 0 0 280px;
    height: 200px;
    overflow: hidden;
}

.corporate-topic-image figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.corporate-topic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.corporate-topic-item:hover .corporate-topic-image img {
    transform: scale(1.05);
}

.corporate-topic-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.corporate-topic-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.corporate-topic-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.corporate-topic-content h3 a:hover {
    color: var(--text-color);
}

.topic-btn {
    flex-shrink: 0;
    margin-left: 30px;
}

.topic-btn .btn-default {
    padding: 15px 35px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 992px) {
    .other-corporate-topics {
        padding: 80px 0;
    }
    
    .corporate-topic-item {
        flex-direction: column;
        gap: 25px;
        padding: 10px;
    }
    
    .corporate-topic-item:hover {
        transform: translateY(-5px);
    }
    
    .corporate-topic-image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }
    
    .corporate-topic-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
    
    .topic-btn {
        margin-left: 0;
        width: 100%;
    }
    
    .topic-btn .btn-default {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .other-corporate-topics {
        padding: 60px 0;
    }
    
    .other-corporate-topics .section-row {
        margin-bottom: 40px;
    }
    
    .corporate-topic-item {
        padding: 5px;
        margin-bottom: 30px;
    }
    
    .corporate-topic-image {
        height: 200px;
    }
    
    .corporate-topic-content h3 {
        font-size: 22px;
    }
}
