/* Changing Topic Styles */
.changing-topic-container {
    background: linear-gradient(180deg, #C0E9CC 0%, #c6b4fb00 100%);
    border-radius: 60px 60px 0 0;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 1280px;
}

.changing-topic-title {
    font-size: 48px;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
    margin-bottom: 40px;
}

.changing-topic-title .primary-color {
    color: #4318be;
}

.changing-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    min-height: 280px;
}

.changing-topic-item {
    transition: transform 0.3s ease;
}

.changing-topic-item:hover {
    transform: translateY(-4px);
}

.changing-topic-link {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 24px;
    padding: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
}

.changing-topic-link:hover {
    border-color: #8B5CF6;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    text-decoration: none;
    color: inherit;
}

.changing-topic-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    flex-shrink: 0;
}

.changing-topic-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.changing-topic-text {
    font-size: 24px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.changing-topic-arrow {
    transition: transform 0.3s ease;
}

.changing-topic-link:hover .changing-topic-arrow {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .changing-topic-container {
        padding: 40px 20px;
        margin: 0 10px;
    }

    .changing-topic-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .changing-topic-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .changing-topic-link {
        padding: 12px;
    }

    .changing-topic-icon {
        width: 36px;
        height: 36px;
        margin-right: 12px;
    }

    .changing-topic-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .changing-topic-container {
        padding: 30px 16px;
    }

    .changing-topic-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .changing-topic-text {
        font-size: 16px;
    }
}
